diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:45:09 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:45:09 -0400 |
| commit | 742ab6c525dde7ae2245ac6874b1139a71716157 (patch) | |
| tree | 4ec637e7638c2e7edf54503b857d45d7b380c1e0 /src/complex | |
| parent | c021ac07699a5fd6b176f793021e0c3136b0f6a2 (diff) | |
remove unnecessary .. from includes
Diffstat (limited to 'src/complex')
| -rw-r--r-- | src/complex/_tgmath.h | 2 | ||||
| -rw-r--r-- | src/complex/cabs.c | 2 | ||||
| -rw-r--r-- | src/complex/cacos.c | 8 | ||||
| -rw-r--r-- | src/complex/cacosh.c | 8 | ||||
| -rw-r--r-- | src/complex/carg.c | 2 | ||||
| -rw-r--r-- | src/complex/casin.c | 2 | ||||
| -rw-r--r-- | src/complex/casinh.c | 4 | ||||
| -rw-r--r-- | src/complex/catan.c | 2 | ||||
| -rw-r--r-- | src/complex/catanh.c | 4 | ||||
| -rw-r--r-- | src/complex/ccos.c | 2 | ||||
| -rw-r--r-- | src/complex/ccosh.c | 2 | ||||
| -rw-r--r-- | src/complex/cexp.c | 2 | ||||
| -rw-r--r-- | src/complex/cimag.c | 2 | ||||
| -rw-r--r-- | src/complex/clog.c | 8 | ||||
| -rw-r--r-- | src/complex/conj.c | 2 | ||||
| -rw-r--r-- | src/complex/cpow.c | 2 | ||||
| -rw-r--r-- | src/complex/cproj.c | 2 | ||||
| -rw-r--r-- | src/complex/creal.c | 2 | ||||
| -rw-r--r-- | src/complex/csin.c | 2 | ||||
| -rw-r--r-- | src/complex/csinh.c | 2 | ||||
| -rw-r--r-- | src/complex/csqrt.c | 2 | ||||
| -rw-r--r-- | src/complex/ctan.c | 2 | ||||
| -rw-r--r-- | src/complex/ctanh.c | 2 |
23 files changed, 34 insertions, 34 deletions
diff --git a/src/complex/_tgmath.h b/src/complex/_tgmath.h index 4dabdae4..c317f3dd 100644 --- a/src/complex/_tgmath.h +++ b/src/complex/_tgmath.h @@ -2,4 +2,4 @@ #include "CMPLXF.c" #include "CMPLXL.c" -#include "../math/_tgmath.h" +#include "math/_tgmath.h" diff --git a/src/complex/cabs.c b/src/complex/cabs.c index f98ec907..87e18fb2 100644 --- a/src/complex/cabs.c +++ b/src/complex/cabs.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/cabs.c" +# define TGSOURCE "complex/cabs.c" #include "_tgmath.h" #include "math.h" diff --git a/src/complex/cacos.c b/src/complex/cacos.c index 3bfe9d38..aaf45137 100644 --- a/src/complex/cacos.c +++ b/src/complex/cacos.c @@ -1,12 +1,12 @@ -# define TGSOURCE "../complex/cacos.c" +# define TGSOURCE "complex/cacos.c" #include "_tgmath.h" #include <complex.h> #include "math.h" #include "fenv.h" -#include "../math/M_PI.c" -#include "../math/M_PI_2.c" -#include "../math/M_PI_4.c" +#include "math/M_PI.c" +#include "math/M_PI_2.c" +#include "math/M_PI_4.c" TYPE complex TGFN(cacos)(TYPE complex z) { diff --git a/src/complex/cacosh.c b/src/complex/cacosh.c index c9a8060d..b5f1fdb1 100644 --- a/src/complex/cacosh.c +++ b/src/complex/cacosh.c @@ -1,12 +1,12 @@ -# define TGSOURCE "../complex/cacosh.c" +# define TGSOURCE "complex/cacosh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" #include "fenv.h" -#include "../math/M_PI.c" -#include "../math/M_PI_2.c" -#include "../math/M_PI_4.c" +#include "math/M_PI.c" +#include "math/M_PI_2.c" +#include "math/M_PI_4.c" TYPE complex TGFN(cacosh)(TYPE complex z) { diff --git a/src/complex/carg.c b/src/complex/carg.c index b4e5b0d8..70bfba00 100644 --- a/src/complex/carg.c +++ b/src/complex/carg.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/carg.c" +# define TGSOURCE "complex/carg.c" #include "_tgmath.h" #include "math.h" diff --git a/src/complex/casin.c b/src/complex/casin.c index e26cc76a..769b586a 100644 --- a/src/complex/casin.c +++ b/src/complex/casin.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/casin.c" +# define TGSOURCE "complex/casin.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/casinh.c b/src/complex/casinh.c index 8cc39474..71414e43 100644 --- a/src/complex/casinh.c +++ b/src/complex/casinh.c @@ -1,10 +1,10 @@ -# define TGSOURCE "../complex/casinh.c" +# define TGSOURCE "complex/casinh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" #include "fenv.h" -#include "../math/M_PI_4.c" +#include "math/M_PI_4.c" TYPE complex TGFN(casinh)(TYPE complex z) { diff --git a/src/complex/catan.c b/src/complex/catan.c index bbe06ccb..d6db9077 100644 --- a/src/complex/catan.c +++ b/src/complex/catan.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/catan.c" +# define TGSOURCE "complex/catan.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/catanh.c b/src/complex/catanh.c index 198fc5ea..8b5c6109 100644 --- a/src/complex/catanh.c +++ b/src/complex/catanh.c @@ -1,10 +1,10 @@ -# define TGSOURCE "../complex/catanh.c" +# define TGSOURCE "complex/catanh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" #include "fenv.h" -#include "../math/M_PI_2.c" +#include "math/M_PI_2.c" TYPE complex TGFN(catanh)(TYPE complex z) { diff --git a/src/complex/ccos.c b/src/complex/ccos.c index a6478823..6b4a7a46 100644 --- a/src/complex/ccos.c +++ b/src/complex/ccos.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/ccos.c" +# define TGSOURCE "complex/ccos.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ccosh.c b/src/complex/ccosh.c index 9725e8d8..b20aed37 100644 --- a/src/complex/ccosh.c +++ b/src/complex/ccosh.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/ccosh.c" +# define TGSOURCE "complex/ccosh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" diff --git a/src/complex/cexp.c b/src/complex/cexp.c index c6d7b537..500dd6ae 100644 --- a/src/complex/cexp.c +++ b/src/complex/cexp.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/cexp.c" +# define TGSOURCE "complex/cexp.c" #include "_tgmath.h" #include <complex.h> #include "math.h" diff --git a/src/complex/cimag.c b/src/complex/cimag.c index 46d5c0db..f007d6f6 100644 --- a/src/complex/cimag.c +++ b/src/complex/cimag.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/cimag.c" +# define TGSOURCE "complex/cimag.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/clog.c b/src/complex/clog.c index 53c209c1..914ca1c6 100644 --- a/src/complex/clog.c +++ b/src/complex/clog.c @@ -1,12 +1,12 @@ -# define TGSOURCE "../complex/clog.c" +# define TGSOURCE "complex/clog.c" #include "_tgmath.h" #include <complex.h> #include "math.h" #include "fenv.h" -#include "../math/M_PI.c" -#include "../math/M_PI_2.c" -#include "../math/M_PI_4.c" +#include "math/M_PI.c" +#include "math/M_PI_2.c" +#include "math/M_PI_4.c" TYPE complex TGFN(clog)(TYPE complex z) { diff --git a/src/complex/conj.c b/src/complex/conj.c index 18e50c9c..6f90411f 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/conj.c" +# define TGSOURCE "complex/conj.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cpow.c b/src/complex/cpow.c index 3989f6fb..ab95c40b 100644 --- a/src/complex/cpow.c +++ b/src/complex/cpow.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/cpow.c" +# define TGSOURCE "complex/cpow.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/cproj.c b/src/complex/cproj.c index ce83a62c..b0f10841 100644 --- a/src/complex/cproj.c +++ b/src/complex/cproj.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/cproj.c" +# define TGSOURCE "complex/cproj.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/creal.c b/src/complex/creal.c index 2e9923ed..38fd2237 100644 --- a/src/complex/creal.c +++ b/src/complex/creal.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/creal.c" +# define TGSOURCE "complex/creal.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/csin.c b/src/complex/csin.c index 1f96a7a2..5086edba 100644 --- a/src/complex/csin.c +++ b/src/complex/csin.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/csin.c" +# define TGSOURCE "complex/csin.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/csinh.c b/src/complex/csinh.c index 9b8e08cd..ee8dbed1 100644 --- a/src/complex/csinh.c +++ b/src/complex/csinh.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/csinh.c" +# define TGSOURCE "complex/csinh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" diff --git a/src/complex/csqrt.c b/src/complex/csqrt.c index 47b4c843..fa6b7721 100644 --- a/src/complex/csqrt.c +++ b/src/complex/csqrt.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/csqrt.c" +# define TGSOURCE "complex/csqrt.c" #include "_tgmath.h" #include <complex.h> #include "math.h" diff --git a/src/complex/ctan.c b/src/complex/ctan.c index 0bfb19b7..4009a7f9 100644 --- a/src/complex/ctan.c +++ b/src/complex/ctan.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/ctan.c" +# define TGSOURCE "complex/ctan.c" #include "_tgmath.h" #include <complex.h> diff --git a/src/complex/ctanh.c b/src/complex/ctanh.c index c787e5ba..25c60890 100644 --- a/src/complex/ctanh.c +++ b/src/complex/ctanh.c @@ -1,4 +1,4 @@ -# define TGSOURCE "../complex/ctanh.c" +# define TGSOURCE "complex/ctanh.c" #include "_tgmath.h" #include <complex.h> #include "math.h" |
