aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lib
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-12 19:35:57 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-16 19:05:35 +0200
commit32ddfec84f9335673e38b31950544a24304697f8 (patch)
tree474403e1325e6bd6c54b31bf2b32128024771522 /src/nvim/lib
parent1710fa43376f4844abe056b3f87aece1845ff89a (diff)
downloadrneovim-32ddfec84f9335673e38b31950544a24304697f8.tar.gz
rneovim-32ddfec84f9335673e38b31950544a24304697f8.tar.bz2
rneovim-32ddfec84f9335673e38b31950544a24304697f8.zip
memory.h: don't include vim.h in header files
Also include stdint.h in khash.h. It was transitively included by vim.h via memory.h before. khash.h accidentally relied on that.
Diffstat (limited to 'src/nvim/lib')
-rw-r--r--src/nvim/lib/khash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/lib/khash.h b/src/nvim/lib/khash.h
index f706e994d5..c9198e048c 100644
--- a/src/nvim/lib/khash.h
+++ b/src/nvim/lib/khash.h
@@ -128,6 +128,7 @@ int main() {
#include <stdlib.h>
#include <string.h>
#include <limits.h>
+#include <stdint.h>
#include "nvim/memory.h"