diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:23:17 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:23:17 -0500 |
| commit | f20eeea657d62f2ef905627ca3a9094d33af7d40 (patch) | |
| tree | 4ad8317c457a62ccf756963b9103b260568c83c5 /src/math | |
| parent | 367fa3b964bc4d12a8221db4cbdd637b620e4750 (diff) | |
reference TGFNs from __fpclassify
Diffstat (limited to 'src/math')
| -rw-r--r-- | src/math/fpclassify.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/math/fpclassify.c b/src/math/fpclassify.c index a12432a2..2e040e41 100644 --- a/src/math/fpclassify.c +++ b/src/math/fpclassify.c @@ -1,10 +1,7 @@ #include <math.h> - int __fpclassifyf(float x); - int __fpclassifyd(double x); - int __fpclassifyl(long double x); #define fpclassify(x) ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) : \ - (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) : __fpclassifyl(x)) + (sizeof (x) == sizeof (double)) ? __fpclassify(x) : __fpclassifyl(x)) /* STDC(199901) |
