From 1f2b1f49842a9a788303ef48bbc4e39eb4fa058c Mon Sep 17 00:00:00 2001 From: jofret Date: Wed, 31 Jan 2007 16:37:34 +0000 Subject: * 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. --- src/elementaryFunctions/sinh/csinhs.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/elementaryFunctions/sinh/csinhs.c') 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 ** ** 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 -typedef float complex floatComplex; -#endif floatComplex csinhs(floatComplex z) { /* FIXME: Dummy... */ -- cgit