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/cosh/zcosha.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/elementaryFunctions/cosh/zcosha.c') diff --git a/src/elementaryFunctions/cosh/zcosha.c b/src/elementaryFunctions/cosh/zcosha.c index 05ba2487..fdfe3d3c 100644 --- a/src/elementaryFunctions/cosh/zcosha.c +++ b/src/elementaryFunctions/cosh/zcosha.c @@ -5,17 +5,12 @@ ** Made by Bruno JOFRET ** ** Started on Thu Dec 7 16:12:02 2006 jofret -** Last update Fri Jan 19 14:53:42 2007 jofret +** Last update Wed Jan 31 11:14:15 2007 jofret ** ** Copyright INRIA 2006 */ -#ifndef STDC99 #include "doubleComplex.h" -#else -#include -typedef double complex doubleComplex; -#endif doubleComplex zcoshs(doubleComplex); -- cgit