diff options
-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 =============== */ |