diff options
-rw-r--r-- | scilab2c/src/type/doubleComplex.h | 2 | ||||
-rw-r--r-- | scilab2c/src/type/floatComplex.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scilab2c/src/type/doubleComplex.h b/scilab2c/src/type/doubleComplex.h index 2d252bc7..5434a4f2 100644 --- a/scilab2c/src/type/doubleComplex.h +++ b/scilab2c/src/type/doubleComplex.h @@ -25,7 +25,9 @@ #endif #include <stdlib.h> +#ifndef _MSC_VER #include <stdbool.h> +#endif #ifndef STDC99 /* diff --git a/scilab2c/src/type/floatComplex.h b/scilab2c/src/type/floatComplex.h index 65912c8e..653723c5 100644 --- a/scilab2c/src/type/floatComplex.h +++ b/scilab2c/src/type/floatComplex.h @@ -24,7 +24,9 @@ # endif #endif -#include <stdbool.h> +#ifndef _MSC_VER + #include <stdbool.h> +#endif #ifndef STDC99 /* |