diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-06 16:18:58 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-06 16:18:58 -0200 |
commit | 322b7b5fc55da0d166efc693cfe674220190b010 (patch) | |
tree | 1e01fd53e7a4aece6b7eb20445307e257511b5d1 /ltests.h | |
parent | 1f917e709ca3fe41cf07fd4bf99a080883521394 (diff) | |
download | lua-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
50 | void luaB_opentests (lua_State *L); | 50 | void 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 |