From 5c95ee85cb39548d28fa9df978536db3442b5bfd Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Tue, 1 Sep 2015 22:58:28 +0200 Subject: [PATCH] [LIBA] bool already exists in C++ --- liba/include/stdbool.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/liba/include/stdbool.h b/liba/include/stdbool.h index 96cba3370..5c470111a 100644 --- a/liba/include/stdbool.h +++ b/liba/include/stdbool.h @@ -1,6 +1,8 @@ #ifndef LIBA_STDBOOL_H #define LIBA_STDBOOL_H +#ifndef __cplusplus typedef char bool; +#endif #endif