lua_assert is an internal matter, not to be configured

This commit is contained in:
Roberto Ierusalimschy
2005-12-27 15:12:00 -02:00
parent 6a516878e9
commit 0fd6466957
4 changed files with 24 additions and 18 deletions

View File

@@ -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