From a6179adf12d78e7e1fedee42440127f3e1786f3d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Jun 2004 09:58:44 -0300 Subject: [PATCH] detail --- lauxlib.h | 4 +--- ltests.h | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lauxlib.h b/lauxlib.h index 176aa240..3b2ceb2b 100644 --- a/lauxlib.h +++ b/lauxlib.h @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.h,v 1.67 2004/06/21 20:05:29 roberto Exp roberto $ +** $Id: lauxlib.h,v 1.68 2004/06/29 16:57:56 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -25,8 +25,6 @@ typedef struct luaL_reg { } luaL_reg; -typedef int (*luaL_Loader)(lua_State *L, const char *name); - LUALIB_API void luaL_openlib (lua_State *L, const char *libname, const luaL_reg *l, int nup); LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *e); diff --git a/ltests.h b/ltests.h index 0f754917..009884a9 100644 --- a/ltests.h +++ b/ltests.h @@ -1,5 +1,5 @@ /* -** $Id: ltests.h,v 2.5 2004/05/03 12:28:43 roberto Exp roberto $ +** $Id: ltests.h,v 2.6 2004/06/02 19:09:21 roberto Exp roberto $ ** Internal Header for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -17,6 +17,7 @@ #undef NDEBUG #include +#undef lua_assert #define lua_assert(c) assert(c) #define check_exp(c,e) (lua_assert(c), (e)) #undef api_check