diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-07-11 18:35:01 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-11 18:35:01 -0400 |
commit | e47968537cfc958b991ff10c6be1dcda65cb95f0 (patch) | |
tree | 9856e515c7a69c9a45fef456416f064dc2718444 /src/nvim/syntax.h | |
parent | cf18687349e2e97f2d0a4c9cb40e494c33516d37 (diff) | |
parent | add8cb784c134f27d4100ee7c3334c2648522987 (diff) | |
download | rneovim-e47968537cfc958b991ff10c6be1dcda65cb95f0.tar.gz rneovim-e47968537cfc958b991ff10c6be1dcda65cb95f0.tar.bz2 rneovim-e47968537cfc958b991ff10c6be1dcda65cb95f0.zip |
Merge #927 'Fix stdbool.h usage'
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index 342ee4e2b1..d9301267a8 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -1,6 +1,8 @@ #ifndef NVIM_SYNTAX_H #define NVIM_SYNTAX_H +#include <stdbool.h> + #include "nvim/buffer_defs.h" typedef int guicolor_T; |