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