lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 23bfcdf970aa9fa5fc2c8c564a97dc476936e681
parent d9ef3d3072d22a052842e644f922790e11a48bd4
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 28 Dec 1993 14:42:11 -0200

"include"s de string.h e stdlib.h para evitar warnings

Diffstat:
Mlex.c | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lex.c b/lex.c @@ -1,11 +1,16 @@ -char *rcs_lex = "$Id: lex.c,v 1.1 1993/12/22 21:15:16 roberto Exp celes $"; +char *rcs_lex = "$Id: lex.c,v 1.2 1993/12/22 21:39:15 celes Exp roberto $"; /*$Log: lex.c,v $ + * Revision 1.2 1993/12/22 21:39:15 celes + * Tratamento do token $debug e $nodebug + * * Revision 1.1 1993/12/22 21:15:16 roberto * Initial revision **/ #include <ctype.h> #include <math.h> +#include <stdlib.h> +#include <string.h> #include "opcode.h" #include "hash.h"