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 /linit.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 'linit.c')
-rw-r--r-- | linit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.2 1999/11/22 13:12:07 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.3 1999/12/06 11:43:09 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c | 3 | ** Initialization of libraries for lua.c |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -7,6 +7,7 @@ | |||
7 | #define LUA_REENTRANT | 7 | #define LUA_REENTRANT |
8 | 8 | ||
9 | #include "lua.h" | 9 | #include "lua.h" |
10 | |||
10 | #include "lualib.h" | 11 | #include "lualib.h" |
11 | 12 | ||
12 | 13 | ||