diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
commit | 73da506ee04ec490c5959b45c216a1f8508bec5b (patch) | |
tree | f356a994826be58341695dca611c3f324b511413 /src/math | |
parent | d82a95f6e907652151f658d140fcd47a26b70976 (diff) |
consistently use <> for standardized headers
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/acosh.c | 2 | ||||
-rw-r--r-- | src/math/atanh.c | 2 | ||||
-rw-r--r-- | src/math/fma.c | 2 | ||||
-rw-r--r-- | src/math/ilogb.c | 4 | ||||
-rw-r--r-- | src/math/lgamma.c | 2 | ||||
-rw-r--r-- | src/math/llrint.c | 4 | ||||
-rw-r--r-- | src/math/log1p.c | 2 | ||||
-rw-r--r-- | src/math/log2.c | 2 | ||||
-rw-r--r-- | src/math/logb.c | 2 | ||||
-rw-r--r-- | src/math/lrint.c | 4 | ||||
-rw-r--r-- | src/math/nan.c | 4 | ||||
-rw-r--r-- | src/math/round.c | 2 | ||||
-rw-r--r-- | src/math/tgamma.c | 2 |
13 files changed, 17 insertions, 17 deletions
diff --git a/src/math/acosh.c b/src/math/acosh.c index f557c875..4830b027 100644 --- a/src/math/acosh.c +++ b/src/math/acosh.c @@ -1,7 +1,7 @@ # define TGSOURCE "acosh.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(acosh)(TYPE x) { diff --git a/src/math/atanh.c b/src/math/atanh.c index bfd4e57b..d33e91ea 100644 --- a/src/math/atanh.c +++ b/src/math/atanh.c @@ -1,7 +1,7 @@ # define TGSOURCE "atanh.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(atanh)(TYPE x) { diff --git a/src/math/fma.c b/src/math/fma.c index 845afea4..83e5f5b4 100644 --- a/src/math/fma.c +++ b/src/math/fma.c @@ -1,7 +1,7 @@ # define TGSOURCE "fma.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z) { diff --git a/src/math/ilogb.c b/src/math/ilogb.c index d1295815..5d895b6d 100644 --- a/src/math/ilogb.c +++ b/src/math/ilogb.c @@ -1,8 +1,8 @@ # define TGSOURCE "ilogb.c" #include "_tgmath.h" #include <math.h> -#include "limits.h" -#include "fenv.h" +#include <limits.h> +#include <fenv.h> int TGFN(ilogb)(TYPE x) { diff --git a/src/math/lgamma.c b/src/math/lgamma.c index 3f0799c2..d536c814 100644 --- a/src/math/lgamma.c +++ b/src/math/lgamma.c @@ -1,7 +1,7 @@ # define TGSOURCE "lgamma.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(lgamma)(TYPE x) { diff --git a/src/math/llrint.c b/src/math/llrint.c index 299a8258..9ec492d4 100644 --- a/src/math/llrint.c +++ b/src/math/llrint.c @@ -1,8 +1,8 @@ # define TGSOURCE "llrint.c" #include "_tgmath.h" #include <math.h> -#include "limits.h" -#include "fenv.h" +#include <limits.h> +#include <fenv.h> long long int TGFN(llrint)(TYPE x) { diff --git a/src/math/log1p.c b/src/math/log1p.c index 5f3e2684..101e5186 100644 --- a/src/math/log1p.c +++ b/src/math/log1p.c @@ -1,7 +1,7 @@ # define TGSOURCE "log1p.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(log1p)(TYPE x) { diff --git a/src/math/log2.c b/src/math/log2.c index 55569065..78929e0a 100644 --- a/src/math/log2.c +++ b/src/math/log2.c @@ -1,7 +1,7 @@ #define TGSOURCE "log2.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(log2)(TYPE x) { diff --git a/src/math/logb.c b/src/math/logb.c index 8dd29371..bf596df6 100644 --- a/src/math/logb.c +++ b/src/math/logb.c @@ -1,7 +1,7 @@ # define TGSOURCE "logb.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(logb)(TYPE x) { diff --git a/src/math/lrint.c b/src/math/lrint.c index 3ce1dd66..a92e146e 100644 --- a/src/math/lrint.c +++ b/src/math/lrint.c @@ -1,8 +1,8 @@ # define TGSOURCE "lrint.c" #include "_tgmath.h" #include <math.h> -#include "limits.h" -#include "fenv.h" +#include <limits.h> +#include <fenv.h> long int TGFN(lrint)(TYPE x) { diff --git a/src/math/nan.c b/src/math/nan.c index c0874e5f..93a0d442 100644 --- a/src/math/nan.c +++ b/src/math/nan.c @@ -1,8 +1,8 @@ # define TGSOURCE "nan.c" #include "_tgmath.h" #include <math.h> -#include "string.h" -#include "stdlib.h" +#include <string.h> +#include <stdlib.h> #define strtodf strtof #define strtodl strtold diff --git a/src/math/round.c b/src/math/round.c index 5eedd578..48260dd2 100644 --- a/src/math/round.c +++ b/src/math/round.c @@ -1,7 +1,7 @@ # define TGSOURCE "round.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> #ifndef __GNUC__ #pragma STDC FENV_ACCESS ON diff --git a/src/math/tgamma.c b/src/math/tgamma.c index 63e25a5b..547dd9bc 100644 --- a/src/math/tgamma.c +++ b/src/math/tgamma.c @@ -1,7 +1,7 @@ # define TGSOURCE "tgamma.c" #include "_tgmath.h" #include <math.h> -#include "fenv.h" +#include <fenv.h> TYPE TGFN(tgamma)(TYPE x) { |