summaryrefslogtreecommitdiff
path: root/src/complex
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex')
-rw-r--r--src/complex/cabs.c5
-rw-r--r--src/complex/cacos.c4
-rw-r--r--src/complex/cacosh.c4
-rw-r--r--src/complex/carg.c5
-rw-r--r--src/complex/casinh.c4
-rw-r--r--src/complex/catanh.c4
-rw-r--r--src/complex/ccosh.c4
-rw-r--r--src/complex/cexp.c4
-rw-r--r--src/complex/clog.c4
-rw-r--r--src/complex/csinh.c4
-rw-r--r--src/complex/csqrt.c4
-rw-r--r--src/complex/ctanh.c4
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)
{