strtoumax: fix typo in previous commit.
[gnulib.git] / tests / test-fmod.c
index 2cae38d..3bbbfe5 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of fmod() function.
-   Copyright (C) 2010 Free Software Foundation, Inc.
+   Copyright (C) 2010-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #include "signature.h"
 SIGNATURE_CHECK (fmod, double, (double, double));
 
+#include <float.h>
+
 #include "macros.h"
 
-volatile double x;
-volatile double y;
-double z;
+#define DOUBLE double
+#define L_(literal) literal
+#define MANT_DIG DBL_MANT_DIG
+#define MAX_EXP DBL_MAX_EXP
+#define FMOD fmod
+#define RANDOM randomd
+#include "test-fmod.h"
 
 int
 main ()
@@ -38,5 +44,7 @@ main ()
   z = fmod (x, y);
   ASSERT (z >= 2.962721817 && z <= 2.962721819);
 
+  test_function ();
+
   return 0;
 }