summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 93793e55..dcc96cd1 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.5 2004/06/02 13:24:43 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.6 2004/06/02 19:07:55 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -55,6 +55,9 @@
55/* first index for arrays */ 55/* first index for arrays */
56#define LUA_FIRSTINDEX 1 56#define LUA_FIRSTINDEX 1
57 57
58/* assertions in Lua (mainly for internal debugging) */
59#define lua_assert(c) /* empty */
60
58/* }====================================================== */ 61/* }====================================================== */
59 62
60 63