aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/buffer.c
diff options
context:
space:
mode:
authorBrandon Coleman <metrix1978@gmail.com>2014-06-23 01:02:56 -0500
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-09 00:18:20 +0200
commit0fff487690803be45b185ca165e12b470fa0466e (patch)
tree28fd8cb3a8625c35960e6a8fb474962b15c3f611 /src/nvim/api/buffer.c
parentb94d07b046887dbe977fab2526aef746ec476f4e (diff)
downloadrneovim-0fff487690803be45b185ca165e12b470fa0466e.tar.gz
rneovim-0fff487690803be45b185ca165e12b470fa0466e.tar.bz2
rneovim-0fff487690803be45b185ca165e12b470fa0466e.zip
move errno.h include out of vim.h
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r--src/nvim/api/buffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c
index 034ced184a..913491c6ca 100644
--- a/src/nvim/api/buffer.c
+++ b/src/nvim/api/buffer.c
@@ -1,5 +1,6 @@
// Much of this code was adapted from 'if_py_both.h' from the original
// vim source
+#include <errno.h>
#include <stdint.h>
#include <stdlib.h>