diff options
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 994d576469..1bdefdae5d 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -6,8 +6,13 @@ * See README.txt for an overview of the Vim source code. */ +#include <errno.h> +#include <assert.h> +#include <inttypes.h> + #include "nvim/api/private/handle.h" #include "nvim/vim.h" +#include "nvim/ascii.h" #include "nvim/window.h" #include "nvim/buffer.h" #include "nvim/charset.h" |