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/acos/cacosa.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/elementaryFunctions/acos/cacosa.c') diff --git a/src/elementaryFunctions/acos/cacosa.c b/src/elementaryFunctions/acos/cacosa.c index da1f5b69..3db39792 100644 --- a/src/elementaryFunctions/acos/cacosa.c +++ b/src/elementaryFunctions/acos/cacosa.c @@ -5,19 +5,12 @@ ** Made by Bruno JOFRET ** ** Started on Fri Jan 5 10:23:49 2007 jofret -** Last update Fri Jan 5 10:24:21 2007 jofret +** Last update Wed Jan 31 11:16:23 2007 jofret ** ** Copyright INRIA 2007 */ - - -#ifndef STDC99 #include "floatComplex.h" -#else -#include -typedef float complex floatComplex; -#endif floatComplex cacoss(floatComplex); -- cgit