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/complex | |
| parent | d82a95f6e907652151f658d140fcd47a26b70976 (diff) | |
consistently use <> for standardized headers
Diffstat (limited to 'src/complex')
| -rw-r--r-- | src/complex/cabs.c | 5 | ||||
| -rw-r--r-- | src/complex/cacos.c | 4 | ||||
| -rw-r--r-- | src/complex/cacosh.c | 4 | ||||
| -rw-r--r-- | src/complex/carg.c | 5 | ||||
| -rw-r--r-- | src/complex/casinh.c | 4 | ||||
| -rw-r--r-- | src/complex/catanh.c | 4 | ||||
| -rw-r--r-- | src/complex/ccosh.c | 4 | ||||
| -rw-r--r-- | src/complex/cexp.c | 4 | ||||
| -rw-r--r-- | src/complex/clog.c | 4 | ||||
| -rw-r--r-- | src/complex/csinh.c | 4 | ||||
| -rw-r--r-- | src/complex/csqrt.c | 4 | ||||
| -rw-r--r-- | src/complex/ctanh.c | 4 |
12 files changed, 24 insertions, 26 deletions
diff --git a/src/complex/cabs.c b/src/complex/cabs.c index 87e18fb2..b4b78ee5 100644 --- a/src/complex/cabs.c +++ b/src/complex/cabs.c @@ -1,8 +1,7 @@ # define TGSOURCE "complex/cabs.c" -#include "_tgmath.h" -#include "math.h" - #include <complex.h> +#include <math.h> +#include "_tgmath.h" TYPE TGFN(cabs)(TYPE complex z) { diff --git a/src/complex/cacos.c b/src/complex/cacos.c index 5df9c0df..90d4e018 100644 --- a/src/complex/cacos.c +++ b/src/complex/cacos.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/cacos.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(cacos)(TYPE complex z) { diff --git a/src/complex/cacosh.c b/src/complex/cacosh.c index 908e4938..e6242d87 100644 --- a/src/complex/cacosh.c +++ b/src/complex/cacosh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/cacosh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(cacosh)(TYPE complex z) { diff --git a/src/complex/carg.c b/src/complex/carg.c index 70bfba00..9c3fd16f 100644 --- a/src/complex/carg.c +++ b/src/complex/carg.c @@ -1,8 +1,7 @@ # define TGSOURCE "complex/carg.c" -#include "_tgmath.h" -#include "math.h" - #include <complex.h> +#include <math.h> +#include "_tgmath.h" TYPE TGFN(carg)(TYPE complex z) { diff --git a/src/complex/casinh.c b/src/complex/casinh.c index 4386d5ee..413e01a2 100644 --- a/src/complex/casinh.c +++ b/src/complex/casinh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/casinh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(casinh)(TYPE complex z) { diff --git a/src/complex/catanh.c b/src/complex/catanh.c index 69ccfd48..9c4aaba1 100644 --- a/src/complex/catanh.c +++ b/src/complex/catanh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/catanh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(catanh)(TYPE complex z) { diff --git a/src/complex/ccosh.c b/src/complex/ccosh.c index b20aed37..38798e8b 100644 --- a/src/complex/ccosh.c +++ b/src/complex/ccosh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/ccosh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(ccosh)(TYPE complex z) { diff --git a/src/complex/cexp.c b/src/complex/cexp.c index 500dd6ae..73a9d5f7 100644 --- a/src/complex/cexp.c +++ b/src/complex/cexp.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/cexp.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(cexp)(TYPE complex z) { diff --git a/src/complex/clog.c b/src/complex/clog.c index e0ab86ab..f1d6697c 100644 --- a/src/complex/clog.c +++ b/src/complex/clog.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/clog.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(clog)(TYPE complex z) { diff --git a/src/complex/csinh.c b/src/complex/csinh.c index ee8dbed1..fb7c71a3 100644 --- a/src/complex/csinh.c +++ b/src/complex/csinh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/csinh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(csinh)(TYPE complex z) { diff --git a/src/complex/csqrt.c b/src/complex/csqrt.c index fa6b7721..d7f0b65c 100644 --- a/src/complex/csqrt.c +++ b/src/complex/csqrt.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/csqrt.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(csqrt)(TYPE complex z) { diff --git a/src/complex/ctanh.c b/src/complex/ctanh.c index 25c60890..8077fb57 100644 --- a/src/complex/ctanh.c +++ b/src/complex/ctanh.c @@ -1,8 +1,8 @@ # define TGSOURCE "complex/ctanh.c" #include "_tgmath.h" #include <complex.h> -#include "math.h" -#include "fenv.h" +#include <math.h> +#include <fenv.h> TYPE complex TGFN(ctanh)(TYPE complex z) { |
