aboutsummaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-13 14:24:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-13 14:24:20 -0300
commit04f657c7f892072d7cdc021e9e2635acc086f898 (patch)
treef5cd7c82ae0152a1b252511f85b58296590eca04 /ltests.h
parent2873d4efff18e972a94a6d20c231b0ac062bc4ca (diff)
downloadlua-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.h b/ltests.h
index ed762e36..7c145680 100644
--- a/ltests.h
+++ b/ltests.h
@@ -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;
67int luaB_opentests (lua_State *L); 67int 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