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