From 0fd64669579f33b03dcda6fac4be908b4cfd7e15 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 27 Dec 2005 15:12:00 -0200 Subject: lua_assert is an internal matter, not to be configured --- lualib.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 26c1827d..3afa4591 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.34 2005/04/13 17:24:20 roberto Exp roberto $ +** $Id: lualib.h,v 1.35 2005/08/10 18:06:58 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -44,4 +44,10 @@ LUALIB_API int (luaopen_package) (lua_State *L); LUALIB_API void (luaL_openlibs) (lua_State *L); + +#ifndef lua_assert +#define lua_assert(x) ((void)0) +#endif + + #endif -- cgit v1.2.3-55-g6feb