diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-31 12:24:08 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-31 12:24:08 -0500 |
| commit | b44cf8aae080ad44e715942ab4bd1dacf4cdfbd9 (patch) | |
| tree | beeee39e35e2bb6c0623d1e16705653e2b73d380 /src | |
| parent | b65a54684571b5eaecc8ff8321171033ce937e0c (diff) | |
fix compilation issues
Diffstat (limited to 'src')
| -rw-r--r-- | src/math/copysign.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/math/copysign.c b/src/math/copysign.c index b4e93e11..8e8dc8fb 100644 --- a/src/math/copysign.c +++ b/src/math/copysign.c @@ -1,6 +1,7 @@ # define TGSOURCE "copysign.c" -#include "_tgmath.h" #include <math.h> +#include "_tgmath.h" +#undef copysign TYPE TGFN(copysign)(TYPE x, TYPE y) { |
