aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-02-20 11:54:58 -0500
committerJames McCoy <jamessan@jamessan.com>2017-02-20 11:54:58 -0500
commitddab4661f7acad985096138b0c29a2b7e569022a (patch)
tree457e3a25d46abe57dd16863014700e494fb33ba0
parenta667972568f7de0eb06c1cc9ee3dd3ff8dd6f5c9 (diff)
downloadrneovim-ddab4661f7acad985096138b0c29a2b7e569022a.tar.gz
rneovim-ddab4661f7acad985096138b0c29a2b7e569022a.tar.bz2
rneovim-ddab4661f7acad985096138b0c29a2b7e569022a.zip
strings.h: Include <stdarg.h> for vim_vsnprintf's use of va_list
This fully resolves #6141.
-rw-r--r--src/nvim/strings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/strings.h b/src/nvim/strings.h
index c61ce8d43c..eb8b83c7d0 100644
--- a/src/nvim/strings.h
+++ b/src/nvim/strings.h
@@ -1,6 +1,7 @@
#ifndef NVIM_STRINGS_H
#define NVIM_STRINGS_H
+#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>