diff options
Diffstat (limited to 'src/math/exp10l.c')
-rw-r--r-- | src/math/exp10l.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/exp10l.c b/src/math/exp10l.c index f3da1a08..f408a0a3 100644 --- a/src/math/exp10l.c +++ b/src/math/exp10l.c @@ -30,3 +30,11 @@ long double exp10l(long double x) #endif weak_alias(exp10l, pow10l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |