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