summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltests.h b/ltests.h
index 009884a9..c2f3ec16 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 2.6 2004/06/02 19:09:21 roberto Exp roberto $ 2** $Id: ltests.h,v 2.7 2004/06/29 16:57:24 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*/
@@ -70,8 +70,8 @@ extern int islocked;
70 70
71int luaB_opentests (lua_State *L); 71int luaB_opentests (lua_State *L);
72 72
73#undef LUA_EXTRALIBS 73#undef lua_userinit
74#define LUA_EXTRALIBS { "tests", luaB_opentests }, 74#define lua_userinit(L) { luaopen_stdlibs(L); luaB_opentests(L); }
75 75
76 76
77 77