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