diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-23 00:40:35 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:19 +0200 |
commit | e69cfa6c15eabfba6f99791482ea657ca325298c (patch) | |
tree | 52cfa4b140af9b5112422ae4f1cc97aac2cdf96a /src/nvim/os | |
parent | 8cc8164e5215f98b254f493b670ee5ff1d80938f (diff) | |
download | rneovim-e69cfa6c15eabfba6f99791482ea657ca325298c.tar.gz rneovim-e69cfa6c15eabfba6f99791482ea657ca325298c.tar.bz2 rneovim-e69cfa6c15eabfba6f99791482ea657ca325298c.zip |
move assert.h include out of vim.h
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/event.c | 1 | ||||
-rw-r--r-- | src/nvim/os/fs.c | 2 | ||||
-rw-r--r-- | src/nvim/os/rstream.c | 1 | ||||
-rw-r--r-- | src/nvim/os/uv_helpers.c | 1 | ||||
-rw-r--r-- | src/nvim/os/wstream.c | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/os/event.c b/src/nvim/os/event.c index a8bd6ca886..a9e97c9190 100644 --- a/src/nvim/os/event.c +++ b/src/nvim/os/event.c @@ -1,3 +1,4 @@ +#include <assert.h> #include <stdint.h> #include <stdbool.h> #include <stdlib.h> diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index da89b41902..5ccefd8ac5 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -1,6 +1,8 @@ // fs.c -- filesystem access #include <stdbool.h> +#include <assert.h> + #include "nvim/os/os.h" #include "nvim/ascii.h" #include "nvim/memory.h" diff --git a/src/nvim/os/rstream.c b/src/nvim/os/rstream.c index 04687cbe9a..5286599586 100644 --- a/src/nvim/os/rstream.c +++ b/src/nvim/os/rstream.c @@ -1,3 +1,4 @@ +#include <assert.h> #include <stdint.h> #include <stdbool.h> #include <stdlib.h> diff --git a/src/nvim/os/uv_helpers.c b/src/nvim/os/uv_helpers.c index a3c9dd5fbf..89687bdac7 100644 --- a/src/nvim/os/uv_helpers.c +++ b/src/nvim/os/uv_helpers.c @@ -1,3 +1,4 @@ +#include <assert.h> #include <uv.h> #include "nvim/os/uv_helpers.h" diff --git a/src/nvim/os/wstream.c b/src/nvim/os/wstream.c index 13b8e8d9dc..3c4b5b6171 100644 --- a/src/nvim/os/wstream.c +++ b/src/nvim/os/wstream.c @@ -1,3 +1,4 @@ +#include <assert.h> #include <stdint.h> #include <stdbool.h> |