fnmatch: fix "[/b" test
[libc-test] / src / math / nextafter.c
index 76e0db4..78cb3d1 100644 (file)
@@ -3,7 +3,7 @@
 #include <fenv.h>
 #include <stdio.h>
 #include <float.h>
-#include <stdlib.h>
+#include <string.h>
 #include "fenvutil.h"
 #include "test.h"
 
@@ -79,13 +79,3 @@ void bench_nextafter_subnormal(int N)
                z = nextafter(0x1p-1070, -0x1p-1071);
        }
 }
-
-void bench_nextafter_zero(int N)
-{
-       int i;
-       volatile double z;
-
-       for (i = 0; i < N; i++) {
-               z = nextafter(0, -0x1p-1071);
-       }
-}