aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-06-20 14:46:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-06-20 14:46:06 -0300
commita08d82eb132bfd9db5b91e0d5ebcb81d7b26dcd0 (patch)
tree45618815246686a535a28fb4e6f9736a60be00d4 /lauxlib.h
parent55ac40f859ad8e28fe71a8801d49f4a4140e8aa3 (diff)
downloadlua-a08d82eb132bfd9db5b91e0d5ebcb81d7b26dcd0.tar.gz
lua-a08d82eb132bfd9db5b91e0d5ebcb81d7b26dcd0.tar.bz2
lua-a08d82eb132bfd9db5b91e0d5ebcb81d7b26dcd0.zip
llimits.h being used by all Lua code
The definitions in llimits.h are useful not only for the core. That header only defines types and '#define's, so libs and core still do not share any real code/data.
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** {======================================================