summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-01-10 14:31:30 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-01-10 14:31:30 -0200
commit162b66624d6868e71010ef3988b482fc811def34 (patch)
treeaebf5f5c036172b4aeec6874aff1002eb8be9e9b /ltests.h
parente791f025c0c59b0a428fab604a7e2251cca568f5 (diff)
downloadlua-github-162b66624d6868e71010ef3988b482fc811def34.tar.gz
no more `lua_userinit' macro
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ltests.h b/ltests.h
index 9338851c..57fde1a7 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltests.h,v 2.9 2004/07/16 13:17:00 roberto Exp roberto $
+** $Id: ltests.h,v 2.10 2004/09/10 17:30:46 roberto Exp roberto $
** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -65,8 +65,9 @@ extern int islocked;
int luaB_opentests (lua_State *L);
-#undef lua_userinit
-#define lua_userinit(L) { luaopen_stdlibs(L); luaB_opentests(L); }
+#ifdef lua_c
+#define luaopen_stdlibs(L) { (luaopen_stdlibs)(L); luaB_opentests(L); }
+#endif