X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=win32%2Fstdbool.h;h=40e2184534fe23724a91c978dad1b8eae83204a4;hb=e628f683385763274b551d468107872a058b31d7;hp=3f4a67bd48e7e278021031a38ae1480cd35e3664;hpb=60c05987e01592bebb403b30ce6d74910ed8a1c0;p=cparser diff --git a/win32/stdbool.h b/win32/stdbool.h index 3f4a67b..40e2184 100644 --- a/win32/stdbool.h +++ b/win32/stdbool.h @@ -8,16 +8,16 @@ #ifndef __cplusplus #ifdef __INTEL_COMPILER -#define bool _Bool -#define true ((_Bool)1) -#define false ((_Bool)0) +#define bool _Bool +#define true ((_Bool)1) +#define false ((_Bool)0) #else -#define bool int -#define true 1 -#define false 0 +#define bool unsigned +#define true 1 +#define false 0 #endif #endif /* __cplusplus */ -#endif /* stdbool.h */ +#endif