aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 3c370686..6c5ecbb7 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -168,21 +168,6 @@ LUALIB_API void (luaL_requiref) (lua_State *L, const char *modname,
168#define luaL_pushfail(L) lua_pushnil(L) 168#define luaL_pushfail(L) lua_pushnil(L)
169 169
170 170
171/*
172** Internal assertions for in-house debugging
173*/
174#if !defined(lua_assert)
175
176#if defined LUAI_ASSERT
177 #include <assert.h>
178 #define lua_assert(c) assert(c)
179#else
180 #define lua_assert(c) ((void)0)
181#endif
182
183#endif
184
185
186 171
187/* 172/*
188** {====================================================== 173** {======================================================