summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ltests.h b/ltests.h
index 9a03d27a..821ce07c 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 1.13 2002/06/11 16:26:12 roberto Exp roberto $ 2** $Id: ltests.h,v 1.14 2002/06/13 13:45:31 roberto Exp roberto $
3** Internal Header for Debugging of the Lua Implementation 3** Internal Header for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -47,16 +47,15 @@ extern int islocked;
47#define lua_unlock(L) lua_assert(--(**cast(int **, L)) == 0) 47#define lua_unlock(L) lua_assert(--(**cast(int **, L)) == 0)
48 48
49 49
50void luaB_opentests (lua_State *L); 50int luaB_opentests (lua_State *L);
51 51
52#define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L)) 52#define lua_userinit(L) (luaB_opentests(L) + openstdlibs(L))
53 53
54 54
55 55
56/* change some sizes to give some bugs a chance */ 56/* change some sizes to give some bugs a chance */
57 57
58#define LUAL_BUFFERSIZE 27 58#define LUAL_BUFFERSIZE 27
59#define ZBSIZE 29
60#define MINSTRTABSIZE 2 59#define MINSTRTABSIZE 2
61 60
62#endif 61#endif