strtoumax: fix typo in previous commit.
[gnulib.git] / tests / test-log10.c
index d94bac6..148d610 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of log10() function.
-   Copyright (C) 2010-2011 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 (log10, double, (double));
 
+#include <float.h>
+
+#include "minus-zero.h"
 #include "macros.h"
 
-volatile double x;
-double y;
+#define DOUBLE double
+#define HUGEVAL HUGE_VAL
+#define L_(literal) literal
+#define MANT_DIG DBL_MANT_DIG
+#define MINUS_ZERO minus_zerod
+#define LOG10 log10
+#define RANDOM randomd
+#include "test-log10.h"
 
 int
 main ()
@@ -36,5 +45,7 @@ main ()
   y = log10 (x);
   ASSERT (y >= -0.2218487497 && y <= -0.2218487496);
 
+  test_function ();
+
   return 0;
 }