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 /loadlib.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 'loadlib.c')
-rw-r--r-- | loadlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ | |||
22 | 22 | ||
23 | #include "lauxlib.h" | 23 | #include "lauxlib.h" |
24 | #include "lualib.h" | 24 | #include "lualib.h" |
25 | #include "llimits.h" | ||
25 | 26 | ||
26 | 27 | ||
27 | /* | 28 | /* |