aboutsummaryrefslogtreecommitdiff
path: root/table.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-10-18 16:34:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-10-18 16:34:47 -0200
commit1a6536aaadb8218493f763eafd83998ce41c5c70 (patch)
treeef7c2e2dab32d0152cce3f2532adb4b6e8ca4f2e /table.c
parentd7cb47fadf182e812f1f9db837dbeae0171ddbb9 (diff)
downloadlua-1a6536aaadb8218493f763eafd83998ce41c5c70.tar.gz
lua-1a6536aaadb8218493f763eafd83998ce41c5c70.tar.bz2
lua-1a6536aaadb8218493f763eafd83998ce41c5c70.zip
deletion of 'include mm.h'
Diffstat (limited to 'table.c')
-rw-r--r--table.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/table.c b/table.c
index b9e3449c..ba3d55c4 100644
--- a/table.c
+++ b/table.c
@@ -3,13 +3,11 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.4 1994/10/17 19:03:23 celes Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.5 1994/10/17 21:45:00 roberto Exp roberto $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
10 10
11#include "mm.h"
12
13#include "opcode.h" 11#include "opcode.h"
14#include "tree.h" 12#include "tree.h"
15#include "hash.h" 13#include "hash.h"