aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/screen.h
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-07-09 10:17:21 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-07-11 18:33:07 -0400
commitadd8cb784c134f27d4100ee7c3334c2648522987 (patch)
tree9856e515c7a69c9a45fef456416f064dc2718444 /src/nvim/screen.h
parent1de9287a024801effa292b877492ab76210223b0 (diff)
downloadrneovim-add8cb784c134f27d4100ee7c3334c2648522987.tar.gz
rneovim-add8cb784c134f27d4100ee7c3334c2648522987.tar.bz2
rneovim-add8cb784c134f27d4100ee7c3334c2648522987.zip
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
Diffstat (limited to 'src/nvim/screen.h')
-rw-r--r--src/nvim/screen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/screen.h b/src/nvim/screen.h
index c71a4d05e1..debf86ae67 100644
--- a/src/nvim/screen.h
+++ b/src/nvim/screen.h
@@ -1,6 +1,8 @@
#ifndef NVIM_SCREEN_H
#define NVIM_SCREEN_H
+#include <stdbool.h>
+
/*
* flags for update_screen()
* The higher the value, the higher the priority