diff options
Diffstat (limited to 'src/math/atanhf.c')
-rw-r--r-- | src/math/atanhf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/atanhf.c b/src/math/atanhf.c index 65f07c0f..01d16dde 100644 --- a/src/math/atanhf.c +++ b/src/math/atanhf.c @@ -26,3 +26,11 @@ float atanhf(float x) } return s ? -y : y; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |