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 /lcorolib.c | |
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 'lcorolib.c')
-rw-r--r-- | lcorolib.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -16,6 +16,7 @@ | |||
16 | 16 | ||
17 | #include "lauxlib.h" | 17 | #include "lauxlib.h" |
18 | #include "lualib.h" | 18 | #include "lualib.h" |
19 | #include "llimits.h" | ||
19 | 20 | ||
20 | 21 | ||
21 | static lua_State *getco (lua_State *L) { | 22 | static lua_State *getco (lua_State *L) { |