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