diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-19 13:50:24 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-19 13:50:24 -0300 |
commit | 7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9 (patch) | |
tree | 8d32378e30754671340463a6cb5466b49c4c01e5 | |
parent | 54ba642cc368c29d85e57fea85f963c01808e210 (diff) | |
download | lua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.tar.gz lua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.tar.bz2 lua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.zip |
unused "#include"
-rw-r--r-- | func.c | 2 | ||||
-rw-r--r-- | inout.c | 3 | ||||
-rw-r--r-- | lex.c | 3 | ||||
-rw-r--r-- | opcode.c | 3 |
4 files changed, 4 insertions, 7 deletions
@@ -1,4 +1,4 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdlib.h> |
2 | 2 | ||
3 | #include "luadebug.h" | 3 | #include "luadebug.h" |
4 | #include "table.h" | 4 | #include "table.h" |
@@ -5,10 +5,9 @@ | |||
5 | ** Also provides some predefined lua functions. | 5 | ** Also provides some predefined lua functions. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | char *rcs_inout="$Id: inout.c,v 2.33 1996/02/26 21:00:27 roberto Exp roberto $"; | 8 | char *rcs_inout="$Id: inout.c,v 2.34 1996/03/15 13:13:13 roberto Exp roberto $"; |
9 | 9 | ||
10 | #include <stdio.h> | 10 | #include <stdio.h> |
11 | #include <stdlib.h> | ||
12 | 11 | ||
13 | #include "lex.h" | 12 | #include "lex.h" |
14 | #include "opcode.h" | 13 | #include "opcode.h" |
@@ -1,9 +1,8 @@ | |||
1 | char *rcs_lex = "$Id: lex.c,v 2.29 1996/02/26 22:35:51 roberto Exp roberto $"; | 1 | char *rcs_lex = "$Id: lex.c,v 2.30 1996/03/14 15:17:28 roberto Exp roberto $"; |
2 | 2 | ||
3 | 3 | ||
4 | #include <ctype.h> | 4 | #include <ctype.h> |
5 | #include <string.h> | 5 | #include <string.h> |
6 | #include <stdio.h> | ||
7 | 6 | ||
8 | #include "mem.h" | 7 | #include "mem.h" |
9 | #include "tree.h" | 8 | #include "tree.h" |
@@ -3,10 +3,9 @@ | |||
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_opcode="$Id: opcode.c,v 3.59 1996/03/04 14:46:35 roberto Exp roberto $"; | 6 | char *rcs_opcode="$Id: opcode.c,v 3.60 1996/03/15 13:13:13 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <setjmp.h> | 8 | #include <setjmp.h> |
9 | #include <stdlib.h> | ||
10 | #include <stdio.h> | 9 | #include <stdio.h> |
11 | #include <string.h> | 10 | #include <string.h> |
12 | 11 | ||