garray: add necessary includes

The upcoming decoupling of vim.h and globals.h needs this to compile.
This commit is contained in:
Nicolas Hillegeer 2014-07-18 10:47:48 +02:00 committed by Justin M. Keyes
parent 47815fc6f4
commit d19712f233

View File

@ -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.