Include stdbool.h in some files which use it

Done by manual inspection of the output of this script:
grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool
grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include
grep -F -x -v -f has_include has_bool
This commit is contained in:
Pavel Platto
2014-07-09 09:44:09 +03:00
committed by Justin M. Keyes
parent cf18687349
commit 0868818d3e
33 changed files with 48 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include <assert.h>
#include <errno.h>
#include <inttypes.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>