From 1de5587184eb2d8d9f379c661f77f7e450764894 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 12 Jun 2000 10:52:05 -0300 Subject: `lua.h' is included before any other Lua header file --- ltable.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 2e88a894..535326e3 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.46 2000/06/06 16:31:41 roberto Exp roberto $ +** $Id: ltable.c,v 1.47 2000/06/08 17:48:31 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -20,13 +20,14 @@ #define LUA_REENTRANT +#include "lua.h" + #include "lauxlib.h" #include "lmem.h" #include "lobject.h" #include "lstate.h" #include "lstring.h" #include "ltable.h" -#include "lua.h" #define gcsize(L, n) numblocks(L, n*2, sizeof(Hash)) -- cgit v1.2.3-55-g6feb