aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1993-12-28 14:42:29 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1993-12-28 14:42:29 -0200
commit23bfcdf970aa9fa5fc2c8c564a97dc476936e681 (patch)
tree00638fc977dbed90dbb7ae6ea319de230ed1e5ac
parentd9ef3d3072d22a052842e644f922790e11a48bd4 (diff)
downloadlua-23bfcdf970aa9fa5fc2c8c564a97dc476936e681.tar.gz
lua-23bfcdf970aa9fa5fc2c8c564a97dc476936e681.tar.bz2
lua-23bfcdf970aa9fa5fc2c8c564a97dc476936e681.zip
"include"s de string.h e stdlib.h para evitar warnings
-rw-r--r--lex.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 1c36f7ac..6b40d452 100644
--- a/lex.c
+++ b/lex.c
@@ -1,11 +1,16 @@
1char *rcs_lex = "$Id: lex.c,v 1.1 1993/12/22 21:15:16 roberto Exp celes $"; 1char *rcs_lex = "$Id: lex.c,v 1.2 1993/12/22 21:39:15 celes Exp roberto $";
2/*$Log: lex.c,v $ 2/*$Log: lex.c,v $
3 * Revision 1.2 1993/12/22 21:39:15 celes
4 * Tratamento do token $debug e $nodebug
5 *
3 * Revision 1.1 1993/12/22 21:15:16 roberto 6 * Revision 1.1 1993/12/22 21:15:16 roberto
4 * Initial revision 7 * Initial revision
5 **/ 8 **/
6 9
7#include <ctype.h> 10#include <ctype.h>
8#include <math.h> 11#include <math.h>
12#include <stdlib.h>
13#include <string.h>
9 14
10#include "opcode.h" 15#include "opcode.h"
11#include "hash.h" 16#include "hash.h"