From 42b74ccf1d8c2bb181be6900b068a3a011e106a9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Jun 2004 12:57:29 -0300 Subject: libraries may want to use `lua_assert' too... --- luaconf.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'luaconf.h') diff --git a/luaconf.h b/luaconf.h index 93793e55..dcc96cd1 100644 --- a/luaconf.h +++ b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.5 2004/06/02 13:24:43 roberto Exp roberto $ +** $Id: luaconf.h,v 1.6 2004/06/02 19:07:55 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -55,6 +55,9 @@ /* first index for arrays */ #define LUA_FIRSTINDEX 1 +/* assertions in Lua (mainly for internal debugging) */ +#define lua_assert(c) /* empty */ + /* }====================================================== */ -- cgit v1.2.3-55-g6feb