From a709018e948fe2b26fe0ac49e2bb0d639b5255c1 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 9 Jun 2018 08:45:45 +0200 Subject: [PATCH] capi: Fix regression caused by use of bool data type Commit 87d33b6c9ed87699ff0d6588279d8268f5df6db3 added code which uses bool. Therefore stdbool.h must be included for compilations with a C compiler. Signed-off-by: Stefan Weil --- src/api/capi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/capi.h b/src/api/capi.h index 0939b1e7dc..47f2b2d707 100644 --- a/src/api/capi.h +++ b/src/api/capi.h @@ -30,6 +30,7 @@ # include "renderer.h" #else # include "platform.h" +# include # include #endif