diff options
Diffstat (limited to 'src/math/atanh.c')
-rw-r--r-- | src/math/atanh.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/atanh.c b/src/math/atanh.c new file mode 100644 index 00000000..2f5f62f1 --- /dev/null +++ b/src/math/atanh.c @@ -0,0 +1,13 @@ +# define TGSOURCE "atanh.c" +#include "nontstd/tgmath.h" +#include <math.h> + +TYPE TGFN(atanh)(TYPE x) +{ + return 0.0; +} + +/* +STDC(199901) +LINK(m) +*/ |