aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-19 13:50:24 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-19 13:50:24 -0300
commit7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9 (patch)
tree8d32378e30754671340463a6cb5466b49c4c01e5
parent54ba642cc368c29d85e57fea85f963c01808e210 (diff)
downloadlua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.tar.gz
lua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.tar.bz2
lua-7e0be1fbde80d72886e11bcbf114a8dbf6d5e1d9.zip
unused "#include"
-rw-r--r--func.c2
-rw-r--r--inout.c3
-rw-r--r--lex.c3
-rw-r--r--opcode.c3
4 files changed, 4 insertions, 7 deletions
diff --git a/func.c b/func.c
index 58ff0fd2..e4fc9f53 100644
--- a/func.c
+++ b/func.c
@@ -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"
diff --git a/inout.c b/inout.c
index 48a67545..0582522c 100644
--- a/inout.c
+++ b/inout.c
@@ -5,10 +5,9 @@
5** Also provides some predefined lua functions. 5** Also provides some predefined lua functions.
6*/ 6*/
7 7
8char *rcs_inout="$Id: inout.c,v 2.33 1996/02/26 21:00:27 roberto Exp roberto $"; 8char *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"
diff --git a/lex.c b/lex.c
index d448f0af..8e744e2c 100644
--- a/lex.c
+++ b/lex.c
@@ -1,9 +1,8 @@
1char *rcs_lex = "$Id: lex.c,v 2.29 1996/02/26 22:35:51 roberto Exp roberto $"; 1char *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"
diff --git a/opcode.c b/opcode.c
index 4a6fb62b..fa0f8064 100644
--- a/opcode.c
+++ b/opcode.c
@@ -3,10 +3,9 @@
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4*/ 4*/
5 5
6char *rcs_opcode="$Id: opcode.c,v 3.59 1996/03/04 14:46:35 roberto Exp roberto $"; 6char *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