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 /lua.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 'lua.c')
-rw-r--r-- | lua.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -19,6 +19,7 @@ | |||
19 | 19 | ||
20 | #include "lauxlib.h" | 20 | #include "lauxlib.h" |
21 | #include "lualib.h" | 21 | #include "lualib.h" |
22 | #include "llimits.h" | ||
22 | 23 | ||
23 | 24 | ||
24 | #if !defined(LUA_PROGNAME) | 25 | #if !defined(LUA_PROGNAME) |