diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-13 14:24:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-13 14:24:20 -0300 |
commit | 04f657c7f892072d7cdc021e9e2635acc086f898 (patch) | |
tree | f5cd7c82ae0152a1b252511f85b58296590eca04 /ltests.h | |
parent | 2873d4efff18e972a94a6d20c231b0ac062bc4ca (diff) | |
download | lua-04f657c7f892072d7cdc021e9e2635acc086f898.tar.gz lua-04f657c7f892072d7cdc021e9e2635acc086f898.tar.bz2 lua-04f657c7f892072d7cdc021e9e2635acc086f898.zip |
new protocol to open standard libraries
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 2.11 2005/01/10 16:31:30 roberto Exp roberto $ | 2 | ** $Id: ltests.h,v 2.12 2005/03/18 18:55:45 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 | */ |
@@ -67,7 +67,7 @@ extern int islocked; | |||
67 | int luaB_opentests (lua_State *L); | 67 | int luaB_opentests (lua_State *L); |
68 | 68 | ||
69 | #ifdef lua_c | 69 | #ifdef lua_c |
70 | #define luaopen_stdlibs(L) { (luaopen_stdlibs)(L); luaB_opentests(L); } | 70 | #define luaL_openlibs(L) { (luaL_openlibs)(L); luaB_opentests(L); } |
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | 73 | ||