diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-04-21 19:16:11 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-04-21 19:16:11 -0400 |
commit | 8f4d1a2409bf7465a9be027268ed35e4099b3e34 (patch) | |
tree | 6b5cff1d0d36318c1d635e3edf83e4b43f580992 | |
parent | 1ae71a66576028eddf532c574c77e12c193eeebc (diff) |
compile cleanly under pure C89
-rw-r--r-- | src/math/acos.c | 1 | ||||
-rw-r--r-- | src/math/cos.c | 1 | ||||
-rw-r--r-- | src/math/fmod.c | 1 | ||||
-rw-r--r-- | src/math/log.c | 1 | ||||
-rw-r--r-- | src/math/log10.c | 1 | ||||
-rw-r--r-- | src/math/pow.c | 1 | ||||
-rw-r--r-- | src/math/sin.c | 1 | ||||
-rw-r--r-- | src/math/tan.c | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/src/math/acos.c b/src/math/acos.c index 2d391fe2..f4e0544d 100644 --- a/src/math/acos.c +++ b/src/math/acos.c @@ -1,6 +1,5 @@ # define TGSOURCE "acos.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/cos.c b/src/math/cos.c index 437428c8..b8b29aa0 100644 --- a/src/math/cos.c +++ b/src/math/cos.c @@ -1,6 +1,5 @@ # define TGSOURCE "cos.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/fmod.c b/src/math/fmod.c index 3d31f55b..15435008 100644 --- a/src/math/fmod.c +++ b/src/math/fmod.c @@ -1,6 +1,5 @@ # define TGSOURCE "fmod.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/log.c b/src/math/log.c index cb08aa98..75564f55 100644 --- a/src/math/log.c +++ b/src/math/log.c @@ -1,6 +1,5 @@ # define TGSOURCE "log.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/log10.c b/src/math/log10.c index 922bfceb..122f2c0d 100644 --- a/src/math/log10.c +++ b/src/math/log10.c @@ -1,6 +1,5 @@ # define TGSOURCE "log10.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/pow.c b/src/math/pow.c index 3400cdd1..6486bc6e 100644 --- a/src/math/pow.c +++ b/src/math/pow.c @@ -1,6 +1,5 @@ # define TGSOURCE "pow.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/sin.c b/src/math/sin.c index 017b750a..5cb8ef73 100644 --- a/src/math/sin.c +++ b/src/math/sin.c @@ -1,6 +1,5 @@ # define TGSOURCE "sin.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" diff --git a/src/math/tan.c b/src/math/tan.c index 8f11e02c..3fc58fed 100644 --- a/src/math/tan.c +++ b/src/math/tan.c @@ -1,6 +1,5 @@ # define TGSOURCE "tan.c" #include <errno.h> -#include <fenv.h> #include <math.h> #include "_tgmath.h" |