From add8cb784c134f27d4100ee7c3334c2648522987 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Wed, 9 Jul 2014 10:17:21 +0300 Subject: Include stdbool.h in headers which have functions with bool in signature Done by manual inspecting of the output of this script: grep -r -l -w "bool" * | grep 'c$' | sed 's/.c$//' > has_bool grep -r -l -w "stdbool.h" * | grep 'h$' | sed 's/.h$//' > has_include grep -F -x -v -f has_include has_bool --- src/nvim/strings.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/strings.h') diff --git a/src/nvim/strings.h b/src/nvim/strings.h index fcc88763c2..3f0f0c8d6a 100644 --- a/src/nvim/strings.h +++ b/src/nvim/strings.h @@ -1,6 +1,8 @@ #ifndef NVIM_STRINGS_H #define NVIM_STRINGS_H +#include + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "strings.h.generated.h" #endif -- cgit