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).
This commit is contained in:
Andrew Chin
2014-07-25 09:25:47 -04:00
committed by Nicolas Hillegeer
parent d5a7947e8b
commit d203c37e21

View File

@@ -2,6 +2,7 @@
#define NVIM_MESSAGE_H #define NVIM_MESSAGE_H
#include <stdbool.h> #include <stdbool.h>
#include <stdarg.h>
#include "nvim/eval_defs.h" // for typval_T #include "nvim/eval_defs.h" // for typval_T
/* /*