From c24d5795ea30345dee4cb5f308de7021ba0ef00b Mon Sep 17 00:00:00 2001 From: jofret Date: Fri, 19 Jan 2007 14:25:46 +0000 Subject: Adding Hyperbolic Cosine and Sine functions --- src/elementaryFunctions/sinh/csinhs.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/elementaryFunctions/sinh/csinhs.c (limited to 'src/elementaryFunctions/sinh/csinhs.c') diff --git a/src/elementaryFunctions/sinh/csinhs.c b/src/elementaryFunctions/sinh/csinhs.c new file mode 100644 index 00000000..6bac5cb3 --- /dev/null +++ b/src/elementaryFunctions/sinh/csinhs.c @@ -0,0 +1,23 @@ +/* +** -*- C -*- +** +** csinhs.c +** Made by Bruno JOFRET +** +** Started on Fri Dec 8 12:04:39 2006 jofret +** Last update Fri Jan 19 15:20:48 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#ifndef STDC99 +#include "floatComplex.h" +#else +#include +typedef float complex floatComplex; +#endif + +floatComplex csinhs(floatComplex z) { + /* FIXME: Dummy... */ + return z; +} -- cgit