diff options
author | jofret | 2007-01-31 16:37:34 +0000 |
---|---|---|
committer | jofret | 2007-01-31 16:37:34 +0000 |
commit | 1f2b1f49842a9a788303ef48bbc4e39eb4fa058c (patch) | |
tree | 330fe1efb8152d784c04ac9c822c690f370dd720 /src/elementaryFunctions/sinh/csinhs.c | |
parent | 170334ed9128da4a2f916d88ba52db0988e1d119 (diff) | |
download | scilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.tar.gz scilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.tar.bz2 scilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.zip |
* src/elementaryFunctions/*.c :
Remove Multi Complex definition.
* src/type/doubleComplex.h :
Used as C99 Complex interface or hand-made complex.
* src/type/floatComplex.h :
Used as C99 Complex interface or hand-made complex.
* src/*/Makefile :
Add -std=c99 flag for native c99 complex compilation.
* src/elementaryFunctions/exp :
Exponential functions.
* src/test/testExp.c :
Add some Exponential functions tests.
Diffstat (limited to 'src/elementaryFunctions/sinh/csinhs.c')
-rw-r--r-- | src/elementaryFunctions/sinh/csinhs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/elementaryFunctions/sinh/csinhs.c b/src/elementaryFunctions/sinh/csinhs.c index 6bac5cb3..4cac792b 100644 --- a/src/elementaryFunctions/sinh/csinhs.c +++ b/src/elementaryFunctions/sinh/csinhs.c @@ -5,17 +5,12 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Fri Dec 8 12:04:39 2006 jofret -** Last update Fri Jan 19 15:20:48 2007 jofret +** Last update Wed Jan 31 11:12:44 2007 jofret ** ** Copyright INRIA 2006 */ -#ifndef STDC99 #include "floatComplex.h" -#else -#include <complex.h> -typedef float complex floatComplex; -#endif floatComplex csinhs(floatComplex z) { /* FIXME: Dummy... */ |