From c4c70464327dd3666f28b3cb191c746d2157830a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sat, 17 Nov 2012 14:24:18 +0000 Subject: [PATCH] fixed __cplusplus preprocessor define --- BaS_gcc/include/bas_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaS_gcc/include/bas_types.h b/BaS_gcc/include/bas_types.h index 0c47b01..ee23d77 100644 --- a/BaS_gcc/include/bas_types.h +++ b/BaS_gcc/include/bas_types.h @@ -8,11 +8,11 @@ #ifndef BAS_TYPES_H_ #define BAS_TYPES_H_ -#ifndef _CPLUSPLUS_ +#ifndef __cplusplus typedef int bool; #define TRUE 1 #define FALSE 0 -#endif /* _CPLUSPLUS_ */ +#endif /* __cplusplus */