diff options
Diffstat (limited to 'src/math/coshf.c')
-rw-r--r-- | src/math/coshf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/coshf.c b/src/math/coshf.c index e739cff9..9d039f27 100644 --- a/src/math/coshf.c +++ b/src/math/coshf.c @@ -31,3 +31,11 @@ float coshf(float x) t = __expo2f(x, 1.0f); return t; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |