diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-06-20 14:46:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-06-20 14:46:06 -0300 |
commit | a08d82eb132bfd9db5b91e0d5ebcb81d7b26dcd0 (patch) | |
tree | 45618815246686a535a28fb4e6f9736a60be00d4 /lauxlib.h | |
parent | 55ac40f859ad8e28fe71a8801d49f4a4140e8aa3 (diff) | |
download | lua-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.h | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -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 | ** {====================================================== |