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