summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/asin/zasins.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/asin/zasins.c')
-rw-r--r--src/elementaryFunctions/asin/zasins.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/elementaryFunctions/asin/zasins.c b/src/elementaryFunctions/asin/zasins.c
new file mode 100644
index 00000000..9ffed91f
--- /dev/null
+++ b/src/elementaryFunctions/asin/zasins.c
@@ -0,0 +1,25 @@
+/*
+** -*- C -*-
+**
+** zasins.c
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Fri Jan 5 10:24:38 2007 jofret
+** Last update Fri Jan 5 16:22:49 2007 jofret
+**
+** Copyright INRIA 2007
+*/
+
+
+#ifndef STDC99
+#include "doubleComplex.h"
+#else
+#include <complex.h>
+typedef double complex doubleComplex;
+#endif
+
+
+doubleComplex zasins(doubleComplex z) {
+ /* FIXME: Dummy... */
+ return (DoubleComplex(0,1));
+}