diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1993-12-28 14:42:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1993-12-28 14:42:29 -0200 |
commit | 23bfcdf970aa9fa5fc2c8c564a97dc476936e681 (patch) | |
tree | 00638fc977dbed90dbb7ae6ea319de230ed1e5ac | |
parent | d9ef3d3072d22a052842e644f922790e11a48bd4 (diff) | |
download | lua-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.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,11 +1,16 @@ | |||
1 | char *rcs_lex = "$Id: lex.c,v 1.1 1993/12/22 21:15:16 roberto Exp celes $"; | 1 | char *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" |