diff options
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 9a60bb591d..55e86d1339 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -284,10 +284,14 @@ // stored as an offset to the previous number in as // few bytes as possible, see offset2bytes()) +#include <errno.h> +#include <inttypes.h> #include <string.h> #include <stdlib.h> +#include <wctype.h> #include "nvim/vim.h" +#include "nvim/ascii.h" #include "nvim/spell.h" #include "nvim/buffer.h" #include "nvim/charset.h" |