From 1de9287a024801effa292b877492ab76210223b0 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Wed, 9 Jul 2014 09:55:40 +0300 Subject: 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 --- src/nvim/api/tabpage.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/api/tabpage.h') diff --git a/src/nvim/api/tabpage.h b/src/nvim/api/tabpage.h index b24a9795e5..a822844af9 100644 --- a/src/nvim/api/tabpage.h +++ b/src/nvim/api/tabpage.h @@ -2,7 +2,6 @@ #define NVIM_API_TABPAGE_H #include -#include #include "nvim/api/private/defs.h" -- cgit