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 --- ltable.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 71259630..131a9aa2 100644 --- a/ltable.c +++ b/ltable.c @@ -1,9 +1,14 @@ /* -** $Id: ltable.c,v 2.97 2014/10/24 11:42:06 roberto Exp roberto $ +** $Id: ltable.c,v 2.98 2014/10/25 11:50:46 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ +#define ltable_c +#define LUA_CORE + +#include "lprefix.h" + /* ** Implementation of tables (aka arrays, objects, or hash tables). @@ -23,9 +28,6 @@ #include #include -#define ltable_c -#define LUA_CORE - #include "lua.h" #include "ldebug.h" -- cgit v1.2.3-55-g6feb