Skip to content

Commit a709018

Browse files
committed
capi: Fix regression caused by use of bool data type
Commit 87d33b6 added code which uses bool. Therefore stdbool.h must be included for compilations with a C compiler. Signed-off-by: Stefan Weil <[email protected]>
1 parent e7c1e07 commit a709018

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/api/capi.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
# include "renderer.h"
3131
#else
3232
# include "platform.h"
33+
# include <stdbool.h>
3334
# include <stdio.h>
3435
#endif
3536

0 commit comments

Comments
 (0)