diff options
Diffstat (limited to 'src/math/__fpclassify.c')
-rw-r--r-- | src/math/__fpclassify.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__fpclassify.c b/src/math/__fpclassify.c index f7c0e2df..68564fd8 100644 --- a/src/math/__fpclassify.c +++ b/src/math/__fpclassify.c @@ -9,3 +9,11 @@ int __fpclassify(double x) if (e==0x7ff) return u.i<<12 ? FP_NAN : FP_INFINITE; return FP_NORMAL; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |