From b44cf8aae080ad44e715942ab4bd1dacf4cdfbd9 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 12:24:08 -0500 Subject: fix compilation issues --- src/math/copysign.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 +#include "_tgmath.h" +#undef copysign TYPE TGFN(copysign)(TYPE x, TYPE y) { -- cgit v1.2.1