aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/hashtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/hashtab.c')
-rw-r--r--src/nvim/hashtab.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/hashtab.c b/src/nvim/hashtab.c
index 85cd59f59f..5b0dc508fa 100644
--- a/src/nvim/hashtab.c
+++ b/src/nvim/hashtab.c
@@ -18,10 +18,13 @@
/// of the entries is empty to keep the lookup efficient (at the cost of extra
/// memory).
+#include <assert.h>
#include <stdbool.h>
#include <string.h>
+#include <inttypes.h>
#include "nvim/vim.h"
+#include "nvim/ascii.h"
#include "nvim/hashtab.h"
#include "nvim/message.h"
#include "nvim/memory.h"