aboutsummaryrefslogtreecommitdiff
path: root/opcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-31 11:19:01 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-31 11:19:01 -0300
commit373363cb693b80c172534467e0458cea96c64f2a (patch)
tree80373e0a76dca8b776316c87ccf30fc77d5215db /opcode.c
parentad5574c4c97af3ef863a6fb4b72142f3780103b2 (diff)
downloadlua-373363cb693b80c172534467e0458cea96c64f2a.tar.gz
lua-373363cb693b80c172534467e0458cea96c64f2a.tar.bz2
lua-373363cb693b80c172534467e0458cea96c64f2a.zip
new name for old "mem.h" (conflicts with some compiler libraries)
Diffstat (limited to 'opcode.c')
-rw-r--r--opcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcode.c b/opcode.c
index 595277a9..67128d23 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 3.86 1997/03/20 19:20:43 roberto Exp roberto $"; 6char *rcs_opcode="$Id: opcode.c,v 3.87 1997/03/31 14:02:58 roberto Exp roberto $";
7 7
8#include <setjmp.h> 8#include <setjmp.h>
9#include <stdio.h> 9#include <stdio.h>
@@ -11,7 +11,7 @@ char *rcs_opcode="$Id: opcode.c,v 3.86 1997/03/20 19:20:43 roberto Exp roberto $
11#include <stdlib.h> 11#include <stdlib.h>
12 12
13#include "luadebug.h" 13#include "luadebug.h"
14#include "mem.h" 14#include "luamem.h"
15#include "opcode.h" 15#include "opcode.h"
16#include "hash.h" 16#include "hash.h"
17#include "inout.h" 17#include "inout.h"