From 0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Wed, 9 Jul 2014 09:44:09 +0300 Subject: 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 --- src/nvim/buffer_defs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/buffer_defs.h') diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 48c78613be..50f5d03f94 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1,6 +1,8 @@ #ifndef NVIM_BUFFER_DEFS_H #define NVIM_BUFFER_DEFS_H +#include + // for garray_T #include "nvim/garray.h" // for pos_T and lpos_T -- cgit