summaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
Diffstat (limited to 'src/math')
-rw-r--r--src/math/__fpclassify.c5
-rw-r--r--src/math/acos.c5
-rw-r--r--src/math/acosh.c5
-rw-r--r--src/math/asin.c5
-rw-r--r--src/math/asinh.c5
-rw-r--r--src/math/atan.c5
-rw-r--r--src/math/atan2.c5
-rw-r--r--src/math/atanh.c5
-rw-r--r--src/math/cbrt.c5
-rw-r--r--src/math/ceil.c5
-rw-r--r--src/math/copysign.c5
-rw-r--r--src/math/cos.c5
-rw-r--r--src/math/cosh.c5
-rw-r--r--src/math/erf.c5
-rw-r--r--src/math/erfc.c5
-rw-r--r--src/math/exp.c5
-rw-r--r--src/math/exp2.c5
-rw-r--r--src/math/expm1.c5
-rw-r--r--src/math/fabs.c5
-rw-r--r--src/math/fdim.c5
-rw-r--r--src/math/floor.c5
-rw-r--r--src/math/fma.c5
-rw-r--r--src/math/fmax.c5
-rw-r--r--src/math/fmin.c5
-rw-r--r--src/math/fmod.c5
-rw-r--r--src/math/frexp.c5
-rw-r--r--src/math/gamma.c5
-rw-r--r--src/math/hypot.c5
-rw-r--r--src/math/ilogb.c5
-rw-r--r--src/math/isgreater.c5
-rw-r--r--src/math/isgreaterequal.c5
-rw-r--r--src/math/isless.c5
-rw-r--r--src/math/islessequal.c5
-rw-r--r--src/math/islessgreater.c5
-rw-r--r--src/math/isunordered.c5
-rw-r--r--src/math/j0.c5
-rw-r--r--src/math/j1.c5
-rw-r--r--src/math/jn.c5
-rw-r--r--src/math/ldexp.c5
-rw-r--r--src/math/lgamma.c5
-rw-r--r--src/math/llrint.c5
-rw-r--r--src/math/llround.c5
-rw-r--r--src/math/log.c5
-rw-r--r--src/math/log10.c5
-rw-r--r--src/math/log1p.c5
-rw-r--r--src/math/log2.c5
-rw-r--r--src/math/logb.c5
-rw-r--r--src/math/lrint.c5
-rw-r--r--src/math/lround.c5
-rw-r--r--src/math/modf.c5
-rw-r--r--src/math/nan.c5
-rw-r--r--src/math/nearbyint.c5
-rw-r--r--src/math/nextafter.c5
-rw-r--r--src/math/nexttoward.c5
-rw-r--r--src/math/pow.c5
-rw-r--r--src/math/remainder.c5
-rw-r--r--src/math/remquo.c5
-rw-r--r--src/math/rint.c5
-rw-r--r--src/math/round.c5
-rw-r--r--src/math/scalb.c5
-rw-r--r--src/math/scalbln.c5
-rw-r--r--src/math/scalbn.c5
-rw-r--r--src/math/signgam.c5
-rw-r--r--src/math/sin.c5
-rw-r--r--src/math/sinh.c5
-rw-r--r--src/math/sqrt.c5
-rw-r--r--src/math/tan.c5
-rw-r--r--src/math/tanh.c5
-rw-r--r--src/math/tgamma.c5
-rw-r--r--src/math/trunc.c5
-rw-r--r--src/math/y0.c5
-rw-r--r--src/math/y1.c5
-rw-r--r--src/math/yn.c5
73 files changed, 365 insertions, 0 deletions
diff --git a/src/math/__fpclassify.c b/src/math/__fpclassify.c
index 8331bd41..48933db8 100644
--- a/src/math/__fpclassify.c
+++ b/src/math/__fpclassify.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "__fpclassify.c"
#include <math.h>
#include "_tgmath.h"
@@ -11,3 +13,6 @@ int TGFN(__fpclassify)(TYPE x)
/*
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/acos.c b/src/math/acos.c
index f4e0544d..8c934d0e 100644
--- a/src/math/acos.c
+++ b/src/math/acos.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "acos.c"
#include <errno.h>
#include <math.h>
@@ -38,3 +40,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/acosh.c b/src/math/acosh.c
index 4830b027..5bc18422 100644
--- a/src/math/acosh.c
+++ b/src/math/acosh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "acosh.c"
#include "_tgmath.h"
#include <math.h>
@@ -26,3 +28,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/asin.c b/src/math/asin.c
index 5a6ca259..fc42f7f8 100644
--- a/src/math/asin.c
+++ b/src/math/asin.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "asin.c"
#include <errno.h>
#include <math.h>
@@ -36,3 +38,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/asinh.c b/src/math/asinh.c
index 9f4589e6..c2e6b640 100644
--- a/src/math/asinh.c
+++ b/src/math/asinh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "asinh.c"
#include "_tgmath.h"
#include <math.h>
@@ -18,3 +20,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/atan.c b/src/math/atan.c
index 267670d3..0bf07ec7 100644
--- a/src/math/atan.c
+++ b/src/math/atan.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "atan.c"
#include <errno.h>
#include <math.h>
@@ -51,3 +53,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/atan2.c b/src/math/atan2.c
index 8d7c1260..d81b417e 100644
--- a/src/math/atan2.c
+++ b/src/math/atan2.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "atan2.c"
#include <errno.h>
#include <math.h>
@@ -84,3 +86,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/atanh.c b/src/math/atanh.c
index d33e91ea..97cb2b3b 100644
--- a/src/math/atanh.c
+++ b/src/math/atanh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "atanh.c"
#include "_tgmath.h"
#include <math.h>
@@ -27,3 +29,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/cbrt.c b/src/math/cbrt.c
index 74c48d52..4e924db2 100644
--- a/src/math/cbrt.c
+++ b/src/math/cbrt.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "cbrt.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/ceil.c b/src/math/ceil.c
index 34a93fe3..291ecf18 100644
--- a/src/math/ceil.c
+++ b/src/math/ceil.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "ceil.c"
#include <errno.h>
#include <math.h>
@@ -33,3 +35,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/copysign.c b/src/math/copysign.c
index c807cfc3..6a9fe9a3 100644
--- a/src/math/copysign.c
+++ b/src/math/copysign.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "copysign.c"
#include "_tgmath.h"
#include <math.h>
@@ -22,3 +24,6 @@ TYPE TGFN(copysign)(TYPE x, TYPE y)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/cos.c b/src/math/cos.c
index b8b29aa0..fec3824a 100644
--- a/src/math/cos.c
+++ b/src/math/cos.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "cos.c"
#include <errno.h>
#include <math.h>
@@ -54,3 +56,6 @@ LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/cosh.c b/src/math/cosh.c
index 735c8cd4..66c20bf2 100644
--- a/src/math/cosh.c
+++ b/src/math/cosh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "cosh.c"
#include <errno.h>
#include <math.h>
@@ -32,3 +34,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/erf.c b/src/math/erf.c
index 2115982b..db5488e1 100644
--- a/src/math/erf.c
+++ b/src/math/erf.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "erf.c"
#include "_tgmath.h"
#include <math.h>
@@ -18,3 +20,6 @@ STDC(199901)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/erfc.c b/src/math/erfc.c
index b937590d..7242e9de 100644
--- a/src/math/erfc.c
+++ b/src/math/erfc.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "erfc.c"
#include "_tgmath.h"
#include <math.h>
@@ -16,3 +18,6 @@ STDC(199901)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/exp.c b/src/math/exp.c
index 4b25da63..0d6b40b8 100644
--- a/src/math/exp.c
+++ b/src/math/exp.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "exp.c"
#include <errno.h>
#include <math.h>
@@ -47,3 +49,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/exp2.c b/src/math/exp2.c
index 16ff5940..5e8e17b2 100644
--- a/src/math/exp2.c
+++ b/src/math/exp2.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "exp2.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ TYPE TGFN(exp2)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/expm1.c b/src/math/expm1.c
index 40684b05..0fdee6fe 100644
--- a/src/math/expm1.c
+++ b/src/math/expm1.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "expm1.c"
#include "_tgmath.h"
#include <math.h>
@@ -18,3 +20,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/fabs.c b/src/math/fabs.c
index 5ee54286..b156d478 100644
--- a/src/math/fabs.c
+++ b/src/math/fabs.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fabs.c"
#include <errno.h>
#include <math.h>
@@ -32,3 +34,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/fdim.c b/src/math/fdim.c
index 4f6b3896..289f5378 100644
--- a/src/math/fdim.c
+++ b/src/math/fdim.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fdim.c"
#include "_tgmath.h"
#include <math.h>
@@ -15,3 +17,6 @@ TYPE TGFN(fdim)(TYPE x, TYPE y)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/floor.c b/src/math/floor.c
index e2d2093a..d759c9c3 100644
--- a/src/math/floor.c
+++ b/src/math/floor.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "floor.c"
#include <errno.h>
#include <math.h>
@@ -33,3 +35,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/fma.c b/src/math/fma.c
index 83e5f5b4..d36aa408 100644
--- a/src/math/fma.c
+++ b/src/math/fma.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fma.c"
#include "_tgmath.h"
#include <math.h>
@@ -33,3 +35,6 @@ TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/fmax.c b/src/math/fmax.c
index 7e5d8a61..e4bf1d11 100644
--- a/src/math/fmax.c
+++ b/src/math/fmax.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fmax.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ TYPE TGFN(fmax)(TYPE x, TYPE y)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/fmin.c b/src/math/fmin.c
index 4408f432..d1427ad7 100644
--- a/src/math/fmin.c
+++ b/src/math/fmin.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fmin.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ TYPE TGFN(fmin)(TYPE x, TYPE y)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/fmod.c b/src/math/fmod.c
index 15435008..68474424 100644
--- a/src/math/fmod.c
+++ b/src/math/fmod.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "fmod.c"
#include <errno.h>
#include <math.h>
@@ -48,3 +50,6 @@ IMPLEMENTATION(Whether ARGUMENT(y) being LITERAL(0) results in a domain error or
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/frexp.c b/src/math/frexp.c
index 04579dff..e60a5e04 100644
--- a/src/math/frexp.c
+++ b/src/math/frexp.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "frexp.c"
#include <errno.h>
#include <math.h>
@@ -43,3 +45,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/gamma.c b/src/math/gamma.c
index b43abfa6..d26da45b 100644
--- a/src/math/gamma.c
+++ b/src/math/gamma.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double gamma(double x)
@@ -9,3 +11,6 @@ double gamma(double x)
XOPEN(4,600)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/hypot.c b/src/math/hypot.c
index ce902c59..60f68384 100644
--- a/src/math/hypot.c
+++ b/src/math/hypot.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "hypot.c"
#include "_tgmath.h"
#include <math.h>
@@ -20,3 +22,6 @@ STDC(199901)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/ilogb.c b/src/math/ilogb.c
index 5d895b6d..8c24aecb 100644
--- a/src/math/ilogb.c
+++ b/src/math/ilogb.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "ilogb.c"
#include "_tgmath.h"
#include <math.h>
@@ -21,3 +23,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/isgreater.c b/src/math/isgreater.c
index 80344c03..b778c1dd 100644
--- a/src/math/isgreater.c
+++ b/src/math/isgreater.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define isgreater(__x, __y) ((__x) > (__y))
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/isgreaterequal.c b/src/math/isgreaterequal.c
index acc5d937..0c9cdc03 100644
--- a/src/math/isgreaterequal.c
+++ b/src/math/isgreaterequal.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define isgreaterequal(__x, __y) ((__x) >= (__y))
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/isless.c b/src/math/isless.c
index 66f7d939..673afce7 100644
--- a/src/math/isless.c
+++ b/src/math/isless.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define isless(__x, __y) ((__x) < (__y))
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/islessequal.c b/src/math/islessequal.c
index 34a1c138..3f300c4a 100644
--- a/src/math/islessequal.c
+++ b/src/math/islessequal.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define islessequal(__x, __y) ((__x) <= (__y))
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/islessgreater.c b/src/math/islessgreater.c
index b17fb161..ea0d056c 100644
--- a/src/math/islessgreater.c
+++ b/src/math/islessgreater.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define islessgreater(__x, __y) ((__x) < (__y) || (__x) > (__y))
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/isunordered.c b/src/math/isunordered.c
index dab6fe64..0cdf50bc 100644
--- a/src/math/isunordered.c
+++ b/src/math/isunordered.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define isunordered(__x, __y) /* TODO */
@@ -6,3 +8,6 @@
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/j0.c b/src/math/j0.c
index 37b8cd11..f41f18b6 100644
--- a/src/math/j0.c
+++ b/src/math/j0.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double j0(double x)
@@ -9,3 +11,6 @@ double j0(double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/j1.c b/src/math/j1.c
index 2e64089b..b414e63c 100644
--- a/src/math/j1.c
+++ b/src/math/j1.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double j1(double x)
@@ -9,3 +11,6 @@ double j1(double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/jn.c b/src/math/jn.c
index b6bfb644..b151f02b 100644
--- a/src/math/jn.c
+++ b/src/math/jn.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double jn(int n, double x)
@@ -9,3 +11,6 @@ double jn(int n, double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/ldexp.c b/src/math/ldexp.c
index c56fe405..f5605cdb 100644
--- a/src/math/ldexp.c
+++ b/src/math/ldexp.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "ldexp.c"
#include <errno.h>
#include <math.h>
@@ -37,3 +39,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/lgamma.c b/src/math/lgamma.c
index d536c814..df2367ae 100644
--- a/src/math/lgamma.c
+++ b/src/math/lgamma.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "lgamma.c"
#include "_tgmath.h"
#include <math.h>
@@ -28,3 +30,6 @@ STDC(199901)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/llrint.c b/src/math/llrint.c
index 9ec492d4..168ef5df 100644
--- a/src/math/llrint.c
+++ b/src/math/llrint.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "llrint.c"
#include "_tgmath.h"
#include <math.h>
@@ -25,3 +27,6 @@ long long int TGFN(llrint)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/llround.c b/src/math/llround.c
index 1025df15..589ad2c8 100644
--- a/src/math/llround.c
+++ b/src/math/llround.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "llround.c"
#include "_tgmath.h"
#include <math.h>
@@ -11,3 +13,6 @@ long long int TGFN(llround)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/log.c b/src/math/log.c
index 75564f55..8ec97e17 100644
--- a/src/math/log.c
+++ b/src/math/log.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "log.c"
#include <errno.h>
#include <math.h>
@@ -43,3 +45,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/log10.c b/src/math/log10.c
index 122f2c0d..90f10b64 100644
--- a/src/math/log10.c
+++ b/src/math/log10.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "log10.c"
#include <errno.h>
#include <math.h>
@@ -43,3 +45,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/log1p.c b/src/math/log1p.c
index 101e5186..5de637b7 100644
--- a/src/math/log1p.c
+++ b/src/math/log1p.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "log1p.c"
#include "_tgmath.h"
#include <math.h>
@@ -29,3 +31,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/log2.c b/src/math/log2.c
index 78929e0a..c339d3df 100644
--- a/src/math/log2.c
+++ b/src/math/log2.c
@@ -1,3 +1,5 @@
+#if 0
+
#define TGSOURCE "log2.c"
#include "_tgmath.h"
#include <math.h>
@@ -27,3 +29,6 @@ TYPE TGFN(log2)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/logb.c b/src/math/logb.c
index bf596df6..eb939211 100644
--- a/src/math/logb.c
+++ b/src/math/logb.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "logb.c"
#include "_tgmath.h"
#include <math.h>
@@ -19,3 +21,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/lrint.c b/src/math/lrint.c
index a92e146e..f760c04e 100644
--- a/src/math/lrint.c
+++ b/src/math/lrint.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "lrint.c"
#include "_tgmath.h"
#include <math.h>
@@ -25,3 +27,6 @@ long int TGFN(lrint)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/lround.c b/src/math/lround.c
index d24f7738..c690679b 100644
--- a/src/math/lround.c
+++ b/src/math/lround.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "lround.c"
#include "_tgmath.h"
#include <math.h>
@@ -11,3 +13,6 @@ long int TGFN(lround)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/modf.c b/src/math/modf.c
index a9331317..c39ba054 100644
--- a/src/math/modf.c
+++ b/src/math/modf.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "modf.c"
#include <errno.h>
#include <math.h>
@@ -35,3 +37,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/nan.c b/src/math/nan.c
index 93a0d442..d56c268f 100644
--- a/src/math/nan.c
+++ b/src/math/nan.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "nan.c"
#include "_tgmath.h"
#include <math.h>
@@ -23,3 +25,6 @@ TYPE TGFN(nan)(const char *tagp)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/nearbyint.c b/src/math/nearbyint.c
index ac9417db..29a7a2c2 100644
--- a/src/math/nearbyint.c
+++ b/src/math/nearbyint.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "nearbyint.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ TYPE TGFN(nearbyint)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/nextafter.c b/src/math/nextafter.c
index a91fa4b5..16a8bcb0 100644
--- a/src/math/nextafter.c
+++ b/src/math/nextafter.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "nextafter.c"
#include "_tgmath.h"
#include <math.h>
@@ -12,3 +14,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c
index 2d8bc59f..3ca38bfd 100644
--- a/src/math/nexttoward.c
+++ b/src/math/nexttoward.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "nexttoward.c"
#include "_tgmath.h"
#include <math.h>
@@ -11,3 +13,6 @@ TYPE TGFN(nexttoward)(TYPE x, TYPE y)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/pow.c b/src/math/pow.c
index 6486bc6e..e5e927c9 100644
--- a/src/math/pow.c
+++ b/src/math/pow.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "pow.c"
#include <errno.h>
#include <math.h>
@@ -116,3 +118,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/remainder.c b/src/math/remainder.c
index c4c360ca..1f8942d0 100644
--- a/src/math/remainder.c
+++ b/src/math/remainder.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
#define TGSOURCE "remainder.c"
#include "_tgmath.h"
@@ -11,3 +13,6 @@ XOPEN(400)
POSIX(200112)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/remquo.c b/src/math/remquo.c
index 7a117ba7..1a1d852c 100644
--- a/src/math/remquo.c
+++ b/src/math/remquo.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "remquo.c"
#include "_tgmath.h"
#include <math.h>
@@ -12,3 +14,6 @@ TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/rint.c b/src/math/rint.c
index a97c4709..c594897c 100644
--- a/src/math/rint.c
+++ b/src/math/rint.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "rint.c"
#include "_tgmath.h"
#include <math.h>
@@ -18,3 +20,6 @@ STDC(199901)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/round.c b/src/math/round.c
index 48260dd2..8801a032 100644
--- a/src/math/round.c
+++ b/src/math/round.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "round.c"
#include "_tgmath.h"
#include <math.h>
@@ -34,3 +36,6 @@ TYPE TGFN(round)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/scalb.c b/src/math/scalb.c
index ab49c533..5a884a14 100644
--- a/src/math/scalb.c
+++ b/src/math/scalb.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double scalb(double x, double n)
@@ -8,3 +10,6 @@ double scalb(double x, double n)
XOPEN(400)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/scalbln.c b/src/math/scalbln.c
index d59c3502..ae2dac19 100644
--- a/src/math/scalbln.c
+++ b/src/math/scalbln.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "scalbln.c"
#include "_tgmath.h"
#include <math.h>
@@ -21,3 +23,6 @@ The scalbn and scalbln functions return x × FLT_RADIX n .
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/scalbn.c b/src/math/scalbn.c
index f01843ce..520fe495 100644
--- a/src/math/scalbn.c
+++ b/src/math/scalbn.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "scalbn.c"
#include "_tgmath.h"
#include <math.h>
@@ -21,3 +23,6 @@ TYPE TGFN(scalbn)(TYPE x, int n)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/signgam.c b/src/math/signgam.c
index 9da63e1a..919f3adf 100644
--- a/src/math/signgam.c
+++ b/src/math/signgam.c
@@ -1,6 +1,11 @@
+#if 0
+
#include <math.h>
int signgam;
/*
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/sin.c b/src/math/sin.c
index 5cb8ef73..effec5e1 100644
--- a/src/math/sin.c
+++ b/src/math/sin.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "sin.c"
#include <errno.h>
#include <math.h>
@@ -54,3 +56,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/sinh.c b/src/math/sinh.c
index a39c0bbd..aa2b1ca6 100644
--- a/src/math/sinh.c
+++ b/src/math/sinh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "sinh.c"
#include <errno.h>
#include <math.h>
@@ -32,3 +34,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/sqrt.c b/src/math/sqrt.c
index e415bd65..62346e16 100644
--- a/src/math/sqrt.c
+++ b/src/math/sqrt.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "sqrt.c"
#include <errno.h>
#include <math.h>
@@ -31,3 +33,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/tan.c b/src/math/tan.c
index 3fc58fed..dc12e98a 100644
--- a/src/math/tan.c
+++ b/src/math/tan.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "tan.c"
#include <errno.h>
#include <math.h>
@@ -32,3 +34,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/tanh.c b/src/math/tanh.c
index 817cac35..7a00c59c 100644
--- a/src/math/tanh.c
+++ b/src/math/tanh.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "tanh.c"
#include <errno.h>
#include <math.h>
@@ -32,3 +34,6 @@ IMPLEMENTATION(The value returned on a domain error, CONSTANT(HUGE_VAL))
LINK(m)
STDC(1)
*/
+
+
+#endif
diff --git a/src/math/tgamma.c b/src/math/tgamma.c
index 547dd9bc..af5f38f4 100644
--- a/src/math/tgamma.c
+++ b/src/math/tgamma.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "tgamma.c"
#include "_tgmath.h"
#include <math.h>
@@ -29,3 +31,6 @@ TYPE TGFN(tgamma)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/trunc.c b/src/math/trunc.c
index 4ee27109..fa2a9c5d 100644
--- a/src/math/trunc.c
+++ b/src/math/trunc.c
@@ -1,3 +1,5 @@
+#if 0
+
# define TGSOURCE "trunc.c"
#include "_tgmath.h"
#include <math.h>
@@ -17,3 +19,6 @@ TYPE TGFN(trunc)(TYPE x)
STDC(199901)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/y0.c b/src/math/y0.c
index 6e30f9a8..ad85af18 100644
--- a/src/math/y0.c
+++ b/src/math/y0.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double y0(double x)
@@ -9,3 +11,6 @@ double y0(double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/y1.c b/src/math/y1.c
index 4323c8c8..9fefc2b5 100644
--- a/src/math/y1.c
+++ b/src/math/y1.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double y1(double x)
@@ -9,3 +11,6 @@ double y1(double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif
diff --git a/src/math/yn.c b/src/math/yn.c
index 921dca38..2a39b015 100644
--- a/src/math/yn.c
+++ b/src/math/yn.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <math.h>
double yn(int n, double x)
@@ -9,3 +11,6 @@ double yn(int n, double x)
XOPEN(4)
LINK(m)
*/
+
+
+#endif