diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2016-07-04 15:34:16 +0100 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2016-07-22 15:23:27 +0100 |
commit | 10772dba045a7e49a52b4af0f84b437c98ab25ef (patch) | |
tree | 05fd21c8eaa54221e27116d1cc0187b180176e60 | |
parent | bd6c41319d90796d88672d52076ce401ad292091 (diff) | |
download | weston-10772dba045a7e49a52b4af0f84b437c98ab25ef.tar.gz weston-10772dba045a7e49a52b4af0f84b437c98ab25ef.tar.bz2 weston-10772dba045a7e49a52b4af0f84b437c98ab25ef.zip |
shared/platform.h: add missing stdbool.h include
Required by the bool type, used through the header.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
-rw-r--r-- | shared/platform.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/platform.h b/shared/platform.h index dd550081..b1b91285 100644 --- a/shared/platform.h +++ b/shared/platform.h @@ -26,6 +26,7 @@ #ifndef WESTON_PLATFORM_H #define WESTON_PLATFORM_H +#include <stdbool.h> #include <string.h> #ifdef ENABLE_EGL |