From 70bfe34a990016e934e73f1318237ddab77333a3 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 --- include/bas_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bas_types.h b/include/bas_types.h index 0c47b01..ee23d77 100644 --- a/include/bas_types.h +++ b/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 */