aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/tests
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/tests')
-rw-r--r--lib/msun/tests/Makefile1
-rw-r--r--lib/msun/tests/cexp_test.c1
-rw-r--r--lib/msun/tests/csqrt_test.c1
-rw-r--r--lib/msun/tests/ctrig_test.c1
-rw-r--r--lib/msun/tests/fenv_test.c1
-rw-r--r--lib/msun/tests/fma_test.c1
-rw-r--r--lib/msun/tests/invctrig_test.c1
-rw-r--r--lib/msun/tests/logarithm_test.c1
-rw-r--r--lib/msun/tests/nan_test.c1
-rw-r--r--lib/msun/tests/nearbyint_test.c1
-rw-r--r--lib/msun/tests/rem_test.c1
-rw-r--r--lib/msun/tests/trig_test.c1
12 files changed, 0 insertions, 12 deletions
diff --git a/lib/msun/tests/Makefile b/lib/msun/tests/Makefile
index ccea2ad82fc3..d2a3ebffadb3 100644
--- a/lib/msun/tests/Makefile
+++ b/lib/msun/tests/Makefile
@@ -1,4 +1,3 @@
-
.include <bsd.own.mk>
TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libm
diff --git a/lib/msun/tests/cexp_test.c b/lib/msun/tests/cexp_test.c
index a23e448ee62a..35b23990a3f3 100644
--- a/lib/msun/tests/cexp_test.c
+++ b/lib/msun/tests/cexp_test.c
@@ -28,7 +28,6 @@
* Tests for corner cases in cexp*().
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <complex.h>
diff --git a/lib/msun/tests/csqrt_test.c b/lib/msun/tests/csqrt_test.c
index 1154c0fc016a..b9ae2b3b6ae7 100644
--- a/lib/msun/tests/csqrt_test.c
+++ b/lib/msun/tests/csqrt_test.c
@@ -28,7 +28,6 @@
* Tests for csqrt{,f}()
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <complex.h>
diff --git a/lib/msun/tests/ctrig_test.c b/lib/msun/tests/ctrig_test.c
index dd03d11fdbd1..ac1b79f2a1ce 100644
--- a/lib/msun/tests/ctrig_test.c
+++ b/lib/msun/tests/ctrig_test.c
@@ -28,7 +28,6 @@
* Tests for csin[h](), ccos[h](), and ctan[h]().
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <complex.h>
#include <fenv.h>
diff --git a/lib/msun/tests/fenv_test.c b/lib/msun/tests/fenv_test.c
index 9069921d8eaf..d85671827d37 100644
--- a/lib/msun/tests/fenv_test.c
+++ b/lib/msun/tests/fenv_test.c
@@ -28,7 +28,6 @@
* Test the correctness and C99-compliance of various fenv.h features.
*/
-#include <sys/cdefs.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <assert.h>
diff --git a/lib/msun/tests/fma_test.c b/lib/msun/tests/fma_test.c
index e6a34e0f2afa..f1aa855df6f2 100644
--- a/lib/msun/tests/fma_test.c
+++ b/lib/msun/tests/fma_test.c
@@ -28,7 +28,6 @@
* Tests for fma{,f,l}().
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <fenv.h>
#include <float.h>
diff --git a/lib/msun/tests/invctrig_test.c b/lib/msun/tests/invctrig_test.c
index 170fb1cad3a3..18d59e6f5416 100644
--- a/lib/msun/tests/invctrig_test.c
+++ b/lib/msun/tests/invctrig_test.c
@@ -28,7 +28,6 @@
* Tests for casin[h](), cacos[h](), and catan[h]().
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <complex.h>
#include <fenv.h>
diff --git a/lib/msun/tests/logarithm_test.c b/lib/msun/tests/logarithm_test.c
index 9da4ad3ba407..de80b5b45615 100644
--- a/lib/msun/tests/logarithm_test.c
+++ b/lib/msun/tests/logarithm_test.c
@@ -28,7 +28,6 @@
* Tests for corner cases in log*().
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <fenv.h>
#include <float.h>
diff --git a/lib/msun/tests/nan_test.c b/lib/msun/tests/nan_test.c
index 75c28d45fb78..32c5c39af0c1 100644
--- a/lib/msun/tests/nan_test.c
+++ b/lib/msun/tests/nan_test.c
@@ -29,7 +29,6 @@
* and sscanf("nan(...)", ...) work identically.
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <fenv.h>
#include <float.h>
diff --git a/lib/msun/tests/nearbyint_test.c b/lib/msun/tests/nearbyint_test.c
index 9dcdbdf6b852..749c2bb23c99 100644
--- a/lib/msun/tests/nearbyint_test.c
+++ b/lib/msun/tests/nearbyint_test.c
@@ -32,7 +32,6 @@
* - tests for harder values (more mantissa bits than float)
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <fenv.h>
#include <math.h>
diff --git a/lib/msun/tests/rem_test.c b/lib/msun/tests/rem_test.c
index 9e5b8c302948..c96dc5ecd074 100644
--- a/lib/msun/tests/rem_test.c
+++ b/lib/msun/tests/rem_test.c
@@ -30,7 +30,6 @@
* Missing tests: fmod, fmodf.
*/
-#include <sys/cdefs.h>
#include <float.h>
#include <math.h>
#include <stdio.h>
diff --git a/lib/msun/tests/trig_test.c b/lib/msun/tests/trig_test.c
index d1d831e07c71..fe8c5298093a 100644
--- a/lib/msun/tests/trig_test.c
+++ b/lib/msun/tests/trig_test.c
@@ -33,7 +33,6 @@
* available at http://www.cs.berkeley.edu/~wkahan/testpi/ .
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <fenv.h>