diff options
Diffstat (limited to 'src/complex/ctanh.c')
| -rw-r--r-- | src/complex/ctanh.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/complex/ctanh.c b/src/complex/ctanh.c new file mode 100644 index 00000000..f4d5683c --- /dev/null +++ b/src/complex/ctanh.c @@ -0,0 +1,23 @@ +# define TGSOURCE "ctanh.c" +#include "nonstd/tgmath.h" + +#include <complex.h> + +TYPE complex TGFN(ctanh)(TYPE complex z) +{ + return 0.0; +} + +/*d +The ctanh functions compute the complex hyperbolic tangent of z. +d*/ + +/*r +The ctanh functions return the complex hyperbolic tangent value. +r*/ + +/* +STDC(199901) +LINK(m) +*/ + |
