summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjofret2009-04-21 06:24:02 +0000
committerjofret2009-04-21 06:24:02 +0000
commit44cc8c32308b75a1bf519e7fe0b45ef67dbf5cb6 (patch)
tree76ef8da3a1acc9c4530a7eb15a284f3b1d87bada /src
parente752e6eb7c35b59d855418dbea875decb64d1cf7 (diff)
downloadscilab2c-44cc8c32308b75a1bf519e7fe0b45ef67dbf5cb6.tar.gz
scilab2c-44cc8c32308b75a1bf519e7fe0b45ef67dbf5cb6.tar.bz2
scilab2c-44cc8c32308b75a1bf519e7fe0b45ef67dbf5cb6.zip
including stdbool is useless under windows
Diffstat (limited to 'src')
-rw-r--r--src/type/doubleComplex.h2
-rw-r--r--src/type/floatComplex.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/type/doubleComplex.h b/src/type/doubleComplex.h
index 2d252bc7..5434a4f2 100644
--- a/src/type/doubleComplex.h
+++ b/src/type/doubleComplex.h
@@ -25,7 +25,9 @@
#endif
#include <stdlib.h>
+#ifndef _MSC_VER
#include <stdbool.h>
+#endif
#ifndef STDC99
/*
diff --git a/src/type/floatComplex.h b/src/type/floatComplex.h
index 65912c8e..653723c5 100644
--- a/src/type/floatComplex.h
+++ b/src/type/floatComplex.h
@@ -24,7 +24,9 @@
# endif
#endif
-#include <stdbool.h>
+#ifndef _MSC_VER
+ #include <stdbool.h>
+#endif
#ifndef STDC99
/*