From a0c19aabbd2b77b2538916b07ca7c9888830b7ee Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Thu, 5 Oct 2017 05:44:00 +0200 Subject: [PATCH] Remove unportable bool guard check --- src/raylib.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/raylib.h b/src/raylib.h index 7d656ec86..93415955a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -302,10 +302,7 @@ // Structures Definition //---------------------------------------------------------------------------------- #ifndef __cplusplus -// Boolean type - #if !defined(_STDBOOL_H) || !defined(__STDBOOL_H) // CLang uses second form - typedef enum { false, true } bool; - #endif + #include #endif // Vector2 type