aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 2e88a894..535326e3 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.46 2000/06/06 16:31:41 roberto Exp roberto $ 2** $Id: ltable.c,v 1.47 2000/06/08 17:48:31 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -20,13 +20,14 @@
20 20
21#define LUA_REENTRANT 21#define LUA_REENTRANT
22 22
23#include "lua.h"
24
23#include "lauxlib.h" 25#include "lauxlib.h"
24#include "lmem.h" 26#include "lmem.h"
25#include "lobject.h" 27#include "lobject.h"
26#include "lstate.h" 28#include "lstate.h"
27#include "lstring.h" 29#include "lstring.h"
28#include "ltable.h" 30#include "ltable.h"
29#include "lua.h"
30 31
31 32
32#define gcsize(L, n) numblocks(L, n*2, sizeof(Hash)) 33#define gcsize(L, n) numblocks(L, n*2, sizeof(Hash))