diff options
Diffstat (limited to 'src/math/coshl.c')
-rw-r--r-- | src/math/coshl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/coshl.c b/src/math/coshl.c index 06a56fe3..088ced58 100644 --- a/src/math/coshl.c +++ b/src/math/coshl.c @@ -45,3 +45,11 @@ long double coshl(long double x) return cosh(x); } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |