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