diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-25 19:46:50 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-25 19:46:50 -0500 |
commit | 9cc24b4b7652b490020c7db83f72a38ae96d6384 (patch) | |
tree | 9e222779adfa42352df3c1dedac2dd6af5f675dd | |
parent | 2444ead9b2dbfda63301000361339a1f0dfc7195 (diff) |
compile under new directory structure
-rw-r--r-- | src/complex/_tgmath.h | 1 | ||||
-rw-r--r-- | src/complex/cabs.c | 4 | ||||
-rw-r--r-- | src/complex/cacos.c | 4 | ||||
-rw-r--r-- | src/complex/cacosh.c | 4 | ||||
-rw-r--r-- | src/complex/carg.c | 4 | ||||
-rw-r--r-- | src/complex/casin.c | 4 | ||||
-rw-r--r-- | src/complex/casinh.c | 4 | ||||
-rw-r--r-- | src/complex/catan.c | 4 | ||||
-rw-r--r-- | src/complex/catanh.c | 4 | ||||
-rw-r--r-- | src/complex/ccos.c | 4 | ||||
-rw-r--r-- | src/complex/ccosh.c | 4 | ||||
-rw-r--r-- | src/complex/cexp.c | 4 | ||||
-rw-r--r-- | src/complex/cimag.c | 4 | ||||
-rw-r--r-- | src/complex/clog.c | 4 | ||||
-rw-r--r-- | src/complex/conj.c | 4 | ||||
-rw-r--r-- | src/complex/cpow.c | 4 | ||||
-rw-r--r-- | src/complex/cproj.c | 4 | ||||
-rw-r--r-- | src/complex/creal.c | 4 | ||||
-rw-r--r-- | src/complex/csin.c | 4 | ||||
-rw-r--r-- | src/complex/csinh.c | 4 | ||||
-rw-r--r-- | src/complex/csqrt.c | 4 | ||||
-rw-r--r-- | src/complex/ctan.c | 4 | ||||
-rw-r--r-- | src/complex/ctanh.c | 4 |
23 files changed, 45 insertions, 44 deletions
diff --git a/src/complex/_tgmath.h b/src/complex/_tgmath.h new file mode 100644 index 00000000..6ed5b37a --- /dev/null +++ b/src/complex/_tgmath.h @@ -0,0 +1 @@ +#include "../math/_tgmath.h" diff --git a/src/complex/cabs.c b/src/complex/cabs.c index a408518b..572163a6 100644 --- a/src/complex/cabs.c +++ b/src/complex/cabs.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cabs.c" -#include "nontstd/tgmath.h" +# define TGSOURCE "../complex/cabs.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cacos.c b/src/complex/cacos.c index 0eb88f4c..4dfeea3b 100644 --- a/src/complex/cacos.c +++ b/src/complex/cacos.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cacos.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cacos.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cacosh.c b/src/complex/cacosh.c index 8589b691..31908738 100644 --- a/src/complex/cacosh.c +++ b/src/complex/cacosh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cacosh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cacosh.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/carg.c b/src/complex/carg.c index 15772f8a..918e6f4d 100644 --- a/src/complex/carg.c +++ b/src/complex/carg.c @@ -1,5 +1,5 @@ -# define TGSOURCE "carg.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/carg.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/casin.c b/src/complex/casin.c index e96fee43..9e13ce58 100644 --- a/src/complex/casin.c +++ b/src/complex/casin.c @@ -1,5 +1,5 @@ -# define TGSOURCE "casin.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/casin.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/casinh.c b/src/complex/casinh.c index fe1b20fb..0b1d1821 100644 --- a/src/complex/casinh.c +++ b/src/complex/casinh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "casinh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/casinh.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/catan.c b/src/complex/catan.c index 6c162c3f..1cfe85b1 100644 --- a/src/complex/catan.c +++ b/src/complex/catan.c @@ -1,5 +1,5 @@ -# define TGSOURCE "catan.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/catan.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/catanh.c b/src/complex/catanh.c index e8eff5cd..dc218e34 100644 --- a/src/complex/catanh.c +++ b/src/complex/catanh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "catanh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/catanh.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ccos.c b/src/complex/ccos.c index 4fffc92f..ff2ec58e 100644 --- a/src/complex/ccos.c +++ b/src/complex/ccos.c @@ -1,5 +1,5 @@ -# define TGSOURCE "ccos.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/ccos.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ccosh.c b/src/complex/ccosh.c index 87ad53d6..86c00405 100644 --- a/src/complex/ccosh.c +++ b/src/complex/ccosh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "ccosh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/ccosh.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cexp.c b/src/complex/cexp.c index d20eb6a6..ff74c58d 100644 --- a/src/complex/cexp.c +++ b/src/complex/cexp.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cexp.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cexp.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cimag.c b/src/complex/cimag.c index 3284d4ca..414ecdba 100644 --- a/src/complex/cimag.c +++ b/src/complex/cimag.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cimag.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cimag.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/clog.c b/src/complex/clog.c index 8b958fea..731a468d 100644 --- a/src/complex/clog.c +++ b/src/complex/clog.c @@ -1,5 +1,5 @@ -# define TGSOURCE "clog.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/clog.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/conj.c b/src/complex/conj.c index 18cadb9d..f1631106 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -1,5 +1,5 @@ -# define TGSOURCE "conj.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/conj.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cpow.c b/src/complex/cpow.c index 5e778b1a..70494666 100644 --- a/src/complex/cpow.c +++ b/src/complex/cpow.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cpow.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cpow.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cproj.c b/src/complex/cproj.c index 406ff812..6a84caf8 100644 --- a/src/complex/cproj.c +++ b/src/complex/cproj.c @@ -1,5 +1,5 @@ -# define TGSOURCE "cproj.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/cproj.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/creal.c b/src/complex/creal.c index 9888a274..86f3cb1b 100644 --- a/src/complex/creal.c +++ b/src/complex/creal.c @@ -1,5 +1,5 @@ -# define TGSOURCE "creal.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/creal.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/csin.c b/src/complex/csin.c index 575c7eb9..6ca3c3a3 100644 --- a/src/complex/csin.c +++ b/src/complex/csin.c @@ -1,5 +1,5 @@ -# define TGSOURCE "csin.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/csin.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/csinh.c b/src/complex/csinh.c index c4db9865..0b3e2c08 100644 --- a/src/complex/csinh.c +++ b/src/complex/csinh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "csinh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/csinh.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/csqrt.c b/src/complex/csqrt.c index edbbd394..d0e273c9 100644 --- a/src/complex/csqrt.c +++ b/src/complex/csqrt.c @@ -1,5 +1,5 @@ -# define TGSOURCE "csqrt.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/csqrt.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ctan.c b/src/complex/ctan.c index 34705e84..2a2d77ef 100644 --- a/src/complex/ctan.c +++ b/src/complex/ctan.c @@ -1,5 +1,5 @@ -# define TGSOURCE "ctan.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/ctan.c" +#include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ctanh.c b/src/complex/ctanh.c index f4d5683c..d1e802e1 100644 --- a/src/complex/ctanh.c +++ b/src/complex/ctanh.c @@ -1,5 +1,5 @@ -# define TGSOURCE "ctanh.c" -#include "nonstd/tgmath.h" +# define TGSOURCE "../complex/ctanh.c" +#include "_tgmath.h" #include <complex.h> |