diff options
Diffstat (limited to 'src/type')
-rw-r--r-- | src/type/doubleComplex.h | 2 | ||||
-rw-r--r-- | src/type/floatComplex.h | 4 |
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 /* |