From 04f657c7f892072d7cdc021e9e2635acc086f898 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 13 Apr 2005 14:24:20 -0300 Subject: new protocol to open standard libraries --- ltests.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.h') diff --git a/ltests.h b/ltests.h index ed762e36..7c145680 100644 --- a/ltests.h +++ b/ltests.h @@ -1,5 +1,5 @@ /* -** $Id: ltests.h,v 2.11 2005/01/10 16:31:30 roberto Exp roberto $ +** $Id: ltests.h,v 2.12 2005/03/18 18:55:45 roberto Exp roberto $ ** Internal Header for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -67,7 +67,7 @@ extern int islocked; int luaB_opentests (lua_State *L); #ifdef lua_c -#define luaopen_stdlibs(L) { (luaopen_stdlibs)(L); luaB_opentests(L); } +#define luaL_openlibs(L) { (luaL_openlibs)(L); luaB_opentests(L); } #endif -- cgit v1.2.3-55-g6feb