diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-22 20:50:35 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:19 +0200 |
commit | 8cc8164e5215f98b254f493b670ee5ff1d80938f (patch) | |
tree | b1908af0af44e59f6590af67788ae3043a67cd04 | |
parent | bf219e1442df06268575853ec6d150e0d09f737a (diff) | |
download | rneovim-8cc8164e5215f98b254f493b670ee5ff1d80938f.tar.gz rneovim-8cc8164e5215f98b254f493b670ee5ff1d80938f.tar.bz2 rneovim-8cc8164e5215f98b254f493b670ee5ff1d80938f.zip |
move wctype.h include out of vim.h
-rw-r--r-- | src/nvim/mbyte.c | 1 | ||||
-rw-r--r-- | src/nvim/spell.c | 1 | ||||
-rw-r--r-- | src/nvim/vim.h | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 70ebbf5b94..cd7a63b5fe 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -79,6 +79,7 @@ #include <inttypes.h> #include <string.h> #include <wchar.h> +#include <wctype.h> #include "nvim/vim.h" #include "nvim/ascii.h" diff --git a/src/nvim/spell.c b/src/nvim/spell.c index d447849bc8..a06928762f 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -287,6 +287,7 @@ #include <inttypes.h> #include <string.h> #include <stdlib.h> +#include <wctype.h> #include "nvim/vim.h" #include "nvim/ascii.h" diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 46907adca9..a99cf6275b 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -96,7 +96,6 @@ typedef uint32_t u8char_T; #include <assert.h> -#include <wctype.h> #include <stdarg.h> /* ================ end of the header file puzzle =============== */ |