From 7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 8 Feb 2019 18:42:39 -0500 Subject: merge sources into single tree --- src/complex/csin.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/complex/csin.c (limited to 'src/complex/csin.c') diff --git a/src/complex/csin.c b/src/complex/csin.c new file mode 100644 index 00000000..575c7eb9 --- /dev/null +++ b/src/complex/csin.c @@ -0,0 +1,23 @@ +# define TGSOURCE "csin.c" +#include "nonstd/tgmath.h" + +#include + +TYPE complex TGFN(csin)(TYPE complex z) +{ + return 0.0; +} + +/*d +The csin functions compute the complex sine of z. +d*/ + +/*r +The csin functions return the complex sine value. +r*/ + +/* +STDC(199901) +LINK(m) +*/ + -- cgit v1.2.1