Mercurial > vim
changeset 2683:0c7d6d01e058 v7.3.101
updated for version 7.3.101
Problem: ino_t defined with wrong size.
Solution: Move including auto/config.h before other includes. (Marius
Geminas)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 17 Jan 2011 19:53:27 +0100 |
parents | 35edf814f223 |
children | 951641b8784d |
files | src/if_lua.c src/if_ruby.c src/version.c |
diffstat | 3 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/if_lua.c +++ b/src/if_lua.c @@ -9,12 +9,11 @@ * See README.txt for an overview of the Vim source code. */ -#include <stdio.h> -#include <string.h> +#include "vim.h" + #include <lua.h> #include <lualib.h> #include <lauxlib.h> -#include "vim.h" /* Only do the following when the feature is enabled. Needed for "make * depend". */
--- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -11,13 +11,13 @@ * See README.txt for an overview of the Vim source code. */ -#include <stdio.h> -#include <string.h> - #ifdef HAVE_CONFIG_H # include "auto/config.h" #endif +#include <stdio.h> +#include <string.h> + #ifdef _WIN32 # if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18) # define NT