diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-17 00:14:21 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:17 +0200 |
commit | a4f441e5475e6316c4bdd08948a843d2aabc8a37 (patch) | |
tree | 4aa356ebbb5f09f85af7e90a3d5c3e7cfaac0880 /src/nvim/os_unix.c | |
parent | e3db6365467bf6087e5eced3bce3969ff975a864 (diff) | |
download | rneovim-a4f441e5475e6316c4bdd08948a843d2aabc8a37.tar.gz rneovim-a4f441e5475e6316c4bdd08948a843d2aabc8a37.tar.bz2 rneovim-a4f441e5475e6316c4bdd08948a843d2aabc8a37.zip |
remove stdbool.h include from vim.h and globals.h
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index e1b622081c..6c4a5cbb3b 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -25,6 +25,7 @@ */ # define select select_declared_wrong +#include <stdbool.h> #include <string.h> #include "nvim/api/private/handle.h" |