diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-23 00:47:39 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:19 +0200 |
commit | b94d07b046887dbe977fab2526aef746ec476f4e (patch) | |
tree | fd5bfd941cf4a969bb9122ded4cd34b320f981c5 | |
parent | e69cfa6c15eabfba6f99791482ea657ca325298c (diff) | |
download | rneovim-b94d07b046887dbe977fab2526aef746ec476f4e.tar.gz rneovim-b94d07b046887dbe977fab2526aef746ec476f4e.tar.bz2 rneovim-b94d07b046887dbe977fab2526aef746ec476f4e.zip |
move stdarg.h include out of vim.h
-rw-r--r-- | src/nvim/eval.c | 1 | ||||
-rw-r--r-- | src/nvim/message.c | 1 | ||||
-rw-r--r-- | src/nvim/vim.h | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 45fef99fa6..fb8f862c01 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -11,6 +11,7 @@ */ #include <inttypes.h> +#include <stdarg.h> #include <string.h> #include <stdlib.h> #include <stdbool.h> diff --git a/src/nvim/message.c b/src/nvim/message.c index ce7b4c0942..22286ee742 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -14,6 +14,7 @@ #include <inttypes.h> #include <stdbool.h> +#include <stdarg.h> #include <string.h> #include <math.h> diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 0959f87288..056f2da0ab 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -95,7 +95,6 @@ typedef uint32_t u8char_T; #include <errno.h> -#include <stdarg.h> /* ================ end of the header file puzzle =============== */ |