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