aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os
diff options
context:
space:
mode:
authorBrandon Coleman <metrix1978@gmail.com>2014-06-17 00:14:21 -0500
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-09 00:18:17 +0200
commita4f441e5475e6316c4bdd08948a843d2aabc8a37 (patch)
tree4aa356ebbb5f09f85af7e90a3d5c3e7cfaac0880 /src/nvim/os
parente3db6365467bf6087e5eced3bce3969ff975a864 (diff)
downloadrneovim-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')
-rw-r--r--src/nvim/os/channel.c1
-rw-r--r--src/nvim/os/dl.c1
-rw-r--r--src/nvim/os/fs.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/os/channel.c b/src/nvim/os/channel.c
index 9bba247a7b..9c220da97f 100644
--- a/src/nvim/os/channel.c
+++ b/src/nvim/os/channel.c
@@ -1,3 +1,4 @@
+#include <stdbool.h>
#include <string.h>
#include <uv.h>
diff --git a/src/nvim/os/dl.c b/src/nvim/os/dl.c
index 980998eb40..e7a957a3aa 100644
--- a/src/nvim/os/dl.c
+++ b/src/nvim/os/dl.c
@@ -1,5 +1,6 @@
/// Functions for using external native libraries
+#include <stdbool.h>
#include <stdint.h>
#include <uv.h>
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c
index 65b88c06f4..677fae801b 100644
--- a/src/nvim/os/fs.c
+++ b/src/nvim/os/fs.c
@@ -1,4 +1,5 @@
// fs.c -- filesystem access
+#include <stdbool.h>
#include "nvim/os/os.h"
#include "nvim/memory.h"