aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/charset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r--src/nvim/charset.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c
index 549c926763..3e1e7c1870 100644
--- a/src/nvim/charset.c
+++ b/src/nvim/charset.c
@@ -2,11 +2,14 @@
///
/// Code related to character sets.
+#include <assert.h>
#include <string.h>
#include <wctype.h>
#include <wchar.h> // for towupper() and towlower()
+#include <inttypes.h>
#include "nvim/vim.h"
+#include "nvim/ascii.h"
#include "nvim/charset.h"
#include "nvim/farsi.h"
#include "nvim/func_attr.h"