diff options
Diffstat (limited to 'src/elementaryFunctions/sinh/zsinhs.c')
-rw-r--r-- | src/elementaryFunctions/sinh/zsinhs.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/elementaryFunctions/sinh/zsinhs.c b/src/elementaryFunctions/sinh/zsinhs.c new file mode 100644 index 00000000..6820fb39 --- /dev/null +++ b/src/elementaryFunctions/sinh/zsinhs.c @@ -0,0 +1,23 @@ +/* +** -*- C -*- +** +** zsinhs.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Dec 8 12:06:35 2006 jofret +** Last update Fri Jan 19 15:18:06 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#ifndef STDC99 +#include "doubleComplex.h" +#else +#include <complex.h> +typedef double complex doubleComplex; +#endif + +doubleComplex zsinhs(doubleComplex z) { + /* FIXME: Dummy... */ + return z; +} |