diff options
Diffstat (limited to 'src/math/tanh.c')
-rw-r--r-- | src/math/tanh.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/tanh.c b/src/math/tanh.c index 20d6dbcf..2318ecd4 100644 --- a/src/math/tanh.c +++ b/src/math/tanh.c @@ -43,3 +43,11 @@ double tanh(double x) } return sign ? -t : t; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |