Remove stdbool.h from files which don't need 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_bool has_include
This commit is contained in:
Pavel Platto
2014-07-09 09:55:40 +03:00
committed by Justin M. Keyes
parent 0868818d3e
commit 1de9287a02
9 changed files with 0 additions and 9 deletions

View File

@@ -2,7 +2,6 @@
#define NVIM_API_WINDOW_H
#include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h"