summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-06 16:18:58 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-06 16:18:58 -0200
commit322b7b5fc55da0d166efc693cfe674220190b010 (patch)
tree1e01fd53e7a4aece6b7eb20445307e257511b5d1 /ltests.h
parent1f917e709ca3fe41cf07fd4bf99a080883521394 (diff)
downloadlua-322b7b5fc55da0d166efc693cfe674220190b010.tar.gz
lua-322b7b5fc55da0d166efc693cfe674220190b010.tar.bz2
lua-322b7b5fc55da0d166efc693cfe674220190b010.zip
easier to add new initialization functions
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.h b/ltests.h
index e892f710..1d29b82a 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 1.2 2001/02/05 19:08:01 roberto Exp roberto $ 2** $Id: ltests.h,v 1.3 2001/02/06 16:01:29 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*/
@@ -49,7 +49,7 @@ extern lua_State *lua_state;
49 49
50void luaB_opentests (lua_State *L); 50void luaB_opentests (lua_State *L);
51 51
52#define LUA_USERINIT(L) luaB_opentests(L) 52#define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L))
53 53
54 54
55#endif 55#endif