diff options
Diffstat (limited to 'src/math/atanhl.c')
-rw-r--r-- | src/math/atanhl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/atanhl.c b/src/math/atanhl.c index 87cd1cdb..e991ec65 100644 --- a/src/math/atanhl.c +++ b/src/math/atanhl.c @@ -33,3 +33,11 @@ long double atanhl(long double x) return s ? -x : x; } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |