aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-07-24 14:55:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-07-24 14:55:57 -0300
commit7a38bdd4b3649366fe51afa504cbbd94167e4262 (patch)
tree8c4fc57c25aea477ee677e871c963577d144b165
parent7614b17e85b00b3aaeb282011414a3e533cc9499 (diff)
downloadlua-7a38bdd4b3649366fe51afa504cbbd94167e4262.tar.gz
lua-7a38bdd4b3649366fe51afa504cbbd94167e4262.tar.bz2
lua-7a38bdd4b3649366fe51afa504cbbd94167e4262.zip
"exit" is defined in "stdlib".
-rw-r--r--opcode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/opcode.c b/opcode.c
index 106ab291..4dd61b95 100644
--- a/opcode.c
+++ b/opcode.c
@@ -3,11 +3,12 @@
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4*/ 4*/
5 5
6char *rcs_opcode="$Id: opcode.c,v 3.69 1996/05/28 21:07:32 roberto Exp roberto $"; 6char *rcs_opcode="$Id: opcode.c,v 3.70 1996/06/10 19:36:24 roberto Exp roberto $";
7 7
8#include <setjmp.h> 8#include <setjmp.h>
9#include <stdio.h> 9#include <stdio.h>
10#include <string.h> 10#include <string.h>
11#include <stdlib.h>
11 12
12#include "luadebug.h" 13#include "luadebug.h"
13#include "mem.h" 14#include "mem.h"