diff options
Diffstat (limited to 'src/math/scalbn.c')
-rw-r--r-- | src/math/scalbn.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/scalbn.c b/src/math/scalbn.c index 182f5610..cedb6aff 100644 --- a/src/math/scalbn.c +++ b/src/math/scalbn.c @@ -31,3 +31,11 @@ double scalbn(double x, int n) x = y * u.f; return x; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |