From 23bfcdf970aa9fa5fc2c8c564a97dc476936e681 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 28 Dec 1993 14:42:29 -0200 Subject: [PATCH] "include"s de string.h e stdlib.h para evitar warnings --- lex.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lex.c b/lex.c index 1c36f7ac..6b40d452 100644 --- 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 #include +#include +#include #include "opcode.h" #include "hash.h"