From 28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sun, 2 Nov 2014 17:19:04 -0200 Subject: added include for 'lprefix.h', for stuff that must be added before any other header file --- lauxlib.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lauxlib.c') diff --git a/lauxlib.c b/lauxlib.c index 74fd74f3..865006d8 100644 --- a/lauxlib.c +++ b/lauxlib.c @@ -1,9 +1,14 @@ /* -** $Id: lauxlib.c,v 1.271 2014/10/25 11:50:46 roberto Exp roberto $ +** $Id: lauxlib.c,v 1.272 2014/10/29 16:11:17 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ +#define lauxlib_c +#define LUA_LIB + +#include "lprefix.h" + #include #include @@ -16,9 +21,6 @@ ** Any function declared here could be written as an application function. */ -#define lauxlib_c -#define LUA_LIB - #include "lua.h" #include "lauxlib.h" -- cgit v1.2.3-55-g6feb