diff options
Diffstat (limited to 'src/math/exp2f.c')
-rw-r--r-- | src/math/exp2f.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/exp2f.c b/src/math/exp2f.c index 0360482c..85e99472 100644 --- a/src/math/exp2f.c +++ b/src/math/exp2f.c @@ -67,3 +67,11 @@ float exp2f(float x) y = y * s; return eval_as_float(y); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |