aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Chin <Andrew.Chin@3ds.com>2014-07-25 09:25:47 -0400
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-25 19:49:20 +0200
commitd203c37e211f7ea540f54f8ebc2670aec9b66396 (patch)
treee52f52ed7c463cf7b8881ccc694e60173c028971
parentd5a7947e8b3fc9b8f45ad1a0f0380e22e67fe6d1 (diff)
downloadrneovim-d203c37e211f7ea540f54f8ebc2670aec9b66396.tar.gz
rneovim-d203c37e211f7ea540f54f8ebc2670aec9b66396.tar.bz2
rneovim-d203c37e211f7ea540f54f8ebc2670aec9b66396.zip
message: add missing stdarg.h include #993
Fixes up gcc 4.1 (not specifically a supported compiler but it's standard for varargs anyway so it's good to have it included and depend less on implicit includes).
-rw-r--r--src/nvim/message.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/message.h b/src/nvim/message.h
index c620597f33..019c7bfb73 100644
--- a/src/nvim/message.h
+++ b/src/nvim/message.h
@@ -2,6 +2,7 @@
#define NVIM_MESSAGE_H
#include <stdbool.h>
+#include <stdarg.h>
#include "nvim/eval_defs.h" // for typval_T
/*