summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tanh/ctanhs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/tanh/ctanhs.c')
-rw-r--r--src/elementaryFunctions/tanh/ctanhs.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/elementaryFunctions/tanh/ctanhs.c b/src/elementaryFunctions/tanh/ctanhs.c
new file mode 100644
index 00000000..8eb8e6ee
--- /dev/null
+++ b/src/elementaryFunctions/tanh/ctanhs.c
@@ -0,0 +1,23 @@
+/*
+** -*- C -*-
+**
+** ctanhs.c
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Thu Dec 7 12:04:28 2006 jofret
+** Last update Mon Jan 29 17:05:27 2007 jofret
+**
+** Copyright INRIA 2006
+*/
+
+#ifndef STDC99
+#include "floatComplex.h"
+#else
+#include <complex.h>
+typedef float complex floatComplex;
+#endif
+
+floatComplex ctanhs(floatComplex z) {
+ /* FIXME: Dummy... */
+ return z;
+}