Skip to content

Commit

Permalink
capi: Fix regression caused by use of bool data type
Browse files Browse the repository at this point in the history
Commit 87d33b6 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>
  • Loading branch information
stweil committed Jun 9, 2018
1 parent e7c1e07 commit a709018
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/api/capi.h
Expand Up @@ -30,6 +30,7 @@
# include "renderer.h"
#else
# include "platform.h"
# include <stdbool.h>
# include <stdio.h>
#endif

Expand Down

0 comments on commit a709018

Please sign in to comment.