canonicalize: fix C89 compilation
[gnulib.git] / tests / test-remainderl.c
index 3307d80..09dc7c7 100644 (file)
 #include "signature.h"
 SIGNATURE_CHECK (remainderl, long double, (long double, long double));
 
+#include <float.h>
+
 #include "fpucw.h"
 #include "macros.h"
 
-volatile long double x;
-volatile long double y;
-long double z;
+#define DOUBLE long double
+#define L_(literal) literal##L
+#define MANT_DIG LDBL_MANT_DIG
+#define MAX_EXP LDBL_MAX_EXP
+#define REMAINDER remainderl
+#define RANDOM randoml
+#include "test-remainder.h"
 
 int
 main ()
@@ -43,5 +49,7 @@ main ()
   z = remainderl (x, y);
   ASSERT (z >= -0.178870837L && z <= -0.178870835L);
 
+  test_function ();
+
   return 0;
 }