aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-14 15:25:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-14 15:25:04 -0300
commit45cf24485de6738b44cd9a68738ae6a11b3827db (patch)
tree1203d08f1ac7e7a4c94bdc3665596c33588a9e8e
parentc56e2b2e30364bf245d518bef5d4b896212c686a (diff)
downloadlua-45cf24485de6738b44cd9a68738ae6a11b3827db.tar.gz
lua-45cf24485de6738b44cd9a68738ae6a11b3827db.tar.bz2
lua-45cf24485de6738b44cd9a68738ae6a11b3827db.zip
useless #include.
-rw-r--r--hash.c3
-rw-r--r--inout.c3
-rw-r--r--lua.stx3
-rw-r--r--table.c4
4 files changed, 4 insertions, 9 deletions
diff --git a/hash.c b/hash.c
index c3db2588..8e541a1e 100644
--- a/hash.c
+++ b/hash.c
@@ -3,9 +3,8 @@
3** hash manager for lua 3** hash manager for lua
4*/ 4*/
5 5
6char *rcs_hash="$Id: hash.c,v 2.26 1995/10/04 14:20:26 roberto Exp $"; 6char *rcs_hash="$Id: hash.c,v 2.28 1996/02/12 18:32:40 roberto Exp roberto $";
7 7
8#include <string.h>
9 8
10#include "mem.h" 9#include "mem.h"
11#include "opcode.h" 10#include "opcode.h"
diff --git a/inout.c b/inout.c
index 97f55465..7959068f 100644
--- a/inout.c
+++ b/inout.c
@@ -5,11 +5,10 @@
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.30 1996/02/12 18:32:40 roberto Exp roberto $"; 8char *rcs_inout="$Id: inout.c,v 2.31 1996/02/13 17:30:39 roberto Exp roberto $";
9 9
10#include <stdio.h> 10#include <stdio.h>
11#include <stdlib.h> 11#include <stdlib.h>
12#include <string.h>
13 12
14#include "lex.h" 13#include "lex.h"
15#include "opcode.h" 14#include "opcode.h"
diff --git a/lua.stx b/lua.stx
index 7d83e62b..8270b7a4 100644
--- a/lua.stx
+++ b/lua.stx
@@ -1,10 +1,9 @@
1%{ 1%{
2 2
3char *rcs_luastx = "$Id: lua.stx,v 3.30 1996/02/12 18:32:40 roberto Exp roberto $"; 3char *rcs_luastx = "$Id: lua.stx,v 3.31 1996/02/13 17:30:39 roberto Exp roberto $";
4 4
5#include <stdio.h> 5#include <stdio.h>
6#include <stdlib.h> 6#include <stdlib.h>
7#include <string.h>
8 7
9#include "luadebug.h" 8#include "luadebug.h"
10#include "mem.h" 9#include "mem.h"
diff --git a/table.c b/table.c
index 614a5c5e..722f8b17 100644
--- a/table.c
+++ b/table.c
@@ -3,9 +3,7 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.45 1996/02/12 18:32:40 roberto Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.46 1996/02/14 13:35:51 roberto Exp roberto $";
7
8/*#include <string.h>*/
9 7
10#include "mem.h" 8#include "mem.h"
11#include "opcode.h" 9#include "opcode.h"