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