mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
garray: add necessary includes
The upcoming decoupling of vim.h and globals.h needs this to compile.
This commit is contained in:
parent
47815fc6f4
commit
d19712f233
@ -1,6 +1,9 @@
|
||||
#ifndef NVIM_GARRAY_H
|
||||
#define NVIM_GARRAY_H
|
||||
|
||||
#include <stddef.h> // for size_t
|
||||
|
||||
#include "nvim/types.h" // for char_u
|
||||
#include "nvim/log.h"
|
||||
|
||||
/// Structure used for growing arrays.
|
||||
|
Loading…
Reference in New Issue
Block a user