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 --- linit.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'linit.c') diff --git a/linit.c b/linit.c index 96b55c71..96378037 100644 --- a/linit.c +++ b/linit.c @@ -1,10 +1,16 @@ /* -** $Id: linit.c,v 1.33 2014/02/06 17:32:33 roberto Exp roberto $ +** $Id: linit.c,v 1.34 2014/05/15 19:28:34 roberto Exp roberto $ ** Initialization of libraries for lua.c and other clients ** See Copyright Notice in lua.h */ +#define linit_c +#define LUA_LIB + +#include "lprefix.h" + + /* ** If you embed Lua in your program and need to open the standard ** libraries, call luaL_openlibs in your program. If you need a @@ -12,10 +18,6 @@ ** it to suit your needs. */ - -#define linit_c -#define LUA_LIB - #include "lua.h" #include "lualib.h" -- cgit v1.2.3-55-g6feb