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