summaryrefslogtreecommitdiffstats
path: root/src/if_lua.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-01-17 19:53:27 +0100
committerBram Moolenaar <Bram@vim.org>2011-01-17 19:53:27 +0100
commite2793357528c97ca73e76080b2d9bf6f89d6e2da (patch)
treef9457c5daf33a70f08ec0b29ecf0f64d3eef7f37 /src/if_lua.c
parent48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6 (diff)
updated for version 7.3.101v7.3.101
Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
Diffstat (limited to 'src/if_lua.c')
-rw-r--r--src/if_lua.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/if_lua.c b/src/if_lua.c
index 3062de8cf1..d3c6a42201 100644
--- 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". */