diff options
Diffstat (limited to 'src/math/exp10f.c')
-rw-r--r-- | src/math/exp10f.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/exp10f.c b/src/math/exp10f.c index d009f0a8..86ca9210 100644 --- a/src/math/exp10f.c +++ b/src/math/exp10f.c @@ -20,3 +20,11 @@ float exp10f(float x) } weak_alias(exp10f, pow10f); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |