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