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/asin/zasina.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/elementaryFunctions/asin/zasina.c') diff --git a/src/elementaryFunctions/asin/zasina.c b/src/elementaryFunctions/asin/zasina.c index c9e13f2d..b3dc3603 100644 --- a/src/elementaryFunctions/asin/zasina.c +++ b/src/elementaryFunctions/asin/zasina.c @@ -5,17 +5,12 @@ ** Made by Bruno JOFRET ** ** Started on Fri Jan 5 10:25:14 2007 jofret -** Last update Fri Jan 5 16:23:01 2007 jofret +** Last update Wed Jan 31 11:15:10 2007 jofret ** ** Copyright INRIA 2007 */ -#ifndef STDC99 #include "doubleComplex.h" -#else -#include -typedef double complex doubleComplex; -#endif doubleComplex zasins(doubleComplex); -- cgit