diff options
Diffstat (limited to 'src/elementaryFunctions/asin/casins.c')
-rw-r--r-- | src/elementaryFunctions/asin/casins.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/elementaryFunctions/asin/casins.c b/src/elementaryFunctions/asin/casins.c new file mode 100644 index 00000000..32cfbd59 --- /dev/null +++ b/src/elementaryFunctions/asin/casins.c @@ -0,0 +1,23 @@ +/* +** -*- C -*- +** +** casins.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Jan 5 11:29:45 2007 jofret +** Last update Fri Jan 5 16:24:08 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef STDC99 +#include "floatComplex.h" +#else +#include <complex.h> +typedef float complex floatComplex; +#endif + +floatComplex casins(floatComplex z) { + /* FIXME: Dummy... */ + return z; +} |