aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/amd64/fenv.c1
-rw-r--r--lib/msun/i387/fenv.c1
-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/trig_test.c1
12 files changed, 0 insertions, 12 deletions
diff --git a/lib/msun/amd64/fenv.c b/lib/msun/amd64/fenv.c
index 2aea6a4cf036..4d271f8d456a 100644
--- a/lib/msun/amd64/fenv.c
+++ b/lib/msun/amd64/fenv.c
@@ -26,7 +26,6 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
#include <sys/types.h>
#include <machine/fpu.h>
diff --git a/lib/msun/i387/fenv.c b/lib/msun/i387/fenv.c
index 958c8a87b2fa..ebb4111a5fa6 100644
--- a/lib/msun/i387/fenv.c
+++ b/lib/msun/i387/fenv.c
@@ -26,7 +26,6 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
#include <sys/types.h>
#include <machine/npx.h>
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/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>