aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-02-19 18:40:33 -0500
committerJames McCoy <jamessan@jamessan.com>2017-02-19 18:40:33 -0500
commita667972568f7de0eb06c1cc9ee3dd3ff8dd6f5c9 (patch)
treed42113dcae083eafc7ef0917f9a3b7ce25cbb2fd /src
parent3a2ae17062ee6b860e7a76ba51397be50d1810db (diff)
downloadrneovim-a667972568f7de0eb06c1cc9ee3dd3ff8dd6f5c9.tar.gz
rneovim-a667972568f7de0eb06c1cc9ee3dd3ff8dd6f5c9.tar.bz2
rneovim-a667972568f7de0eb06c1cc9ee3dd3ff8dd6f5c9.zip
string.c: Include <stdarg.h> for va_list type and va_* macros
Closes #6141
Diffstat (limited to 'src')
-rw-r--r--src/nvim/strings.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c
index 5ee29b9172..f7218cc267 100644
--- a/src/nvim/strings.c
+++ b/src/nvim/strings.c
@@ -1,4 +1,5 @@
#include <inttypes.h>
+#include <stdarg.h>
#include <stdbool.h>
#include <string.h>
#include <math.h>