aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-18 10:47:48 +0200
committerJustin M. Keyes <justinkz@gmail.com>2014-07-20 16:59:57 -0400
commitd19712f23345af2545af609721f1dbccd002a0df (patch)
tree3ffab49ad28d0985fefc8fcbdb4c84d9f76a0aff
parent47815fc6f43e42d64f57d6cf72dad21c3e012c31 (diff)
downloadrneovim-d19712f23345af2545af609721f1dbccd002a0df.tar.gz
rneovim-d19712f23345af2545af609721f1dbccd002a0df.tar.bz2
rneovim-d19712f23345af2545af609721f1dbccd002a0df.zip
garray: add necessary includes
The upcoming decoupling of vim.h and globals.h needs this to compile.
-rw-r--r--src/nvim/garray.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/garray.h b/src/nvim/garray.h
index 5a90da21c2..b32bab52f7 100644
--- a/src/nvim/garray.h
+++ b/src/nvim/garray.h
@@ -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.