diff options
Diffstat (limited to 'src/elementaryFunctions/cos/zcoss.c')
-rw-r--r-- | src/elementaryFunctions/cos/zcoss.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/elementaryFunctions/cos/zcoss.c b/src/elementaryFunctions/cos/zcoss.c new file mode 100644 index 00000000..b921a9c9 --- /dev/null +++ b/src/elementaryFunctions/cos/zcoss.c @@ -0,0 +1,24 @@ +/* +** -*- C -*- +** +** zcoss.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Dec 7 12:05:48 2006 jofret +** Last update Thu Dec 7 16:43:16 2006 jofret +** +** Copyright INRIA 2006 +*/ + +#ifndef STDC99 +#include "doubleComplex.h" +#else +#include <complex.h> +typedef double complex doubleComplex; +#endif + + +doubleComplex zcoss(doubleComplex z) { + /* FIXME: Dummy... */ + return (DoubleComplex(0,1)); +} |