summaryrefslogtreecommitdiff
path: root/src/complex/ccos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/ccos.c')
-rw-r--r--src/complex/ccos.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/complex/ccos.c b/src/complex/ccos.c
new file mode 100644
index 00000000..4fffc92f
--- /dev/null
+++ b/src/complex/ccos.c
@@ -0,0 +1,22 @@
+# define TGSOURCE "ccos.c"
+#include "nonstd/tgmath.h"
+
+#include <complex.h>
+
+TYPE complex TGFN(ccos)(TYPE complex z)
+{
+ return 0.0;
+}
+
+/*d
+The ccos functions compute the complex cosine of z.
+d*/
+
+/*r
+The ccos functions return the complex cosine value.
+r*/
+
+/*
+STDC(199901)
+LINK(m)
+*/