diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-12 10:52:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-12 10:52:05 -0300 |
commit | 1de5587184eb2d8d9f379c661f77f7e450764894 (patch) | |
tree | 9be30539af6392679e56ae3cf336e2d2befc8255 /liolib.c | |
parent | 8ca9534d048782af13141874e0d2fec0d0f806af (diff) | |
download | lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.bz2 lua-1de5587184eb2d8d9f379c661f77f7e450764894.zip |
`lua.h' is included before any other Lua header file
Diffstat (limited to 'liolib.c')
-rw-r--r-- | liolib.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: liolib.c,v 1.65 2000/05/26 19:17:57 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 1.66 2000/05/30 18:55:16 roberto Exp roberto $ |
3 | ** Standard I/O (and system) library | 3 | ** Standard I/O (and system) library |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -14,8 +14,9 @@ | |||
14 | 14 | ||
15 | #define LUA_REENTRANT | 15 | #define LUA_REENTRANT |
16 | 16 | ||
17 | #include "lauxlib.h" | ||
18 | #include "lua.h" | 17 | #include "lua.h" |
18 | |||
19 | #include "lauxlib.h" | ||
19 | #include "luadebug.h" | 20 | #include "luadebug.h" |
20 | #include "lualib.h" | 21 | #include "lualib.h" |
21 | 22 | ||