diff options
Diffstat (limited to 'src/math/frexpl.c')
-rw-r--r-- | src/math/frexpl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/frexpl.c b/src/math/frexpl.c index 3c1b5537..51dd82e6 100644 --- a/src/math/frexpl.c +++ b/src/math/frexpl.c @@ -27,3 +27,11 @@ long double frexpl(long double x, int *e) return u.f; } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |