aboutsummaryrefslogtreecommitdiff
path: root/opcode.c
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1994-03-28 12:14:02 -0300
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1994-03-28 12:14:02 -0300
commit3577eb6f136bf2b394c2ce839fc098da5faa9fd5 (patch)
treeb9a60ccf33e4da721dbad5f24a7d4701fc4af49b /opcode.c
parent7f3d01c200df33b67d1f4b0198adae7ea7af8e10 (diff)
downloadlua-3577eb6f136bf2b394c2ce839fc098da5faa9fd5.tar.gz
lua-3577eb6f136bf2b394c2ce839fc098da5faa9fd5.tar.bz2
lua-3577eb6f136bf2b394c2ce839fc098da5faa9fd5.zip
Acrescentar o include do gerenciador de memoria "mm".
Diffstat (limited to 'opcode.c')
-rw-r--r--opcode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/opcode.c b/opcode.c
index 3ba6f2d2..5fc75b5c 100644
--- a/opcode.c
+++ b/opcode.c
@@ -3,7 +3,7 @@
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4*/ 4*/
5 5
6char *rcs_opcode="$Id: opcode.c,v 1.1 1993/12/17 18:41:19 celes Exp roberto $"; 6char *rcs_opcode="$Id: opcode.c,v 1.2 1994/02/13 20:36:51 roberto Exp celes $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <stdlib.h> 9#include <stdlib.h>
@@ -12,6 +12,8 @@ char *rcs_opcode="$Id: opcode.c,v 1.1 1993/12/17 18:41:19 celes Exp roberto $";
12#include <floatingpoint.h> 12#include <floatingpoint.h>
13#endif 13#endif
14 14
15#include "mm.h"
16
15#include "opcode.h" 17#include "opcode.h"
16#include "hash.h" 18#include "hash.h"
17#include "inout.h" 19#include "inout.h"