diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-02 14:41:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-02 14:41:29 -0200 |
commit | b097076678a9ca637df9dae0089314acbb884dda (patch) | |
tree | 1233fa31e53c0328f8cd123edb2ea6308679831d | |
parent | 8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4 (diff) | |
download | lua-b097076678a9ca637df9dae0089314acbb884dda.tar.gz lua-b097076678a9ca637df9dae0089314acbb884dda.tar.bz2 lua-b097076678a9ca637df9dae0089314acbb884dda.zip |
missing include
-rw-r--r-- | ldo.c | 3 | ||||
-rw-r--r-- | llex.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 1.54 1999/12/01 19:50:08 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.55 1999/12/02 16:24:45 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <setjmp.h> | 8 | #include <setjmp.h> |
9 | #include <stdio.h> | ||
9 | #include <stdlib.h> | 10 | #include <stdlib.h> |
10 | #include <string.h> | 11 | #include <string.h> |
11 | 12 | ||
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.43 1999/11/09 17:59:35 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.44 1999/11/22 13:12:07 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <ctype.h> | 8 | #include <ctype.h> |
9 | #include <stdio.h> | ||
9 | #include <string.h> | 10 | #include <string.h> |
10 | 11 | ||
11 | #define LUA_REENTRANT | 12 | #define LUA_REENTRANT |