diff options
Diffstat (limited to 'src/math/ldexp.c')
-rw-r--r-- | src/math/ldexp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/ldexp.c b/src/math/ldexp.c index f4d1cd6a..79c486b0 100644 --- a/src/math/ldexp.c +++ b/src/math/ldexp.c @@ -4,3 +4,11 @@ double ldexp(double x, int n) { return scalbn(x, n); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |