diff options
author | jofret | 2009-04-21 06:41:37 +0000 |
---|---|---|
committer | jofret | 2009-04-21 06:41:37 +0000 |
commit | cb100551cbec27d556a27fe9f70de0c93463862b (patch) | |
tree | 31517d0863017af70515e92513d73e0d95921156 | |
parent | 2568c6bdc671569b25ff4ea6f5c1ec8a4aa533df (diff) | |
download | scilab2c-cb100551cbec27d556a27fe9f70de0c93463862b.tar.gz scilab2c-cb100551cbec27d556a27fe9f70de0c93463862b.tar.bz2 scilab2c-cb100551cbec27d556a27fe9f70de0c93463862b.zip |
Oups... Remove the wrong include
-rw-r--r-- | scilab2c/src/type/doubleComplex.c | 1 | ||||
-rw-r--r-- | scilab2c/src/type/floatComplex.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/scilab2c/src/type/doubleComplex.c b/scilab2c/src/type/doubleComplex.c index 6b8d5b4f..72460495 100644 --- a/scilab2c/src/type/doubleComplex.c +++ b/scilab2c/src/type/doubleComplex.c @@ -21,6 +21,7 @@ # endif #endif +#include <stdlib.h> #include "doubleComplex.h" #ifndef STDC99 diff --git a/scilab2c/src/type/floatComplex.c b/scilab2c/src/type/floatComplex.c index a3cac507..8ff7774b 100644 --- a/scilab2c/src/type/floatComplex.c +++ b/scilab2c/src/type/floatComplex.c @@ -21,7 +21,6 @@ # endif #endif -#include <stdio.h> #include <stdlib.h> #include "floatComplex.h" |