capi: Fix regression caused by use of bool data type

Commit 87d33b6c9e added code which uses bool.
Therefore stdbool.h must be included for compilations with a C compiler.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2018-06-09 08:45:45 +02:00
parent e7c1e0739c
commit a709018e94

View File

@ -30,6 +30,7 @@
# include "renderer.h"
#else
# include "platform.h"
# include <stdbool.h>
# include <stdio.h>
#endif