From 73eee8ee938726a5edc96489d9f5ced5ebe90e9e Mon Sep 17 00:00:00 2001 From: Scott Tringali Date: Thu, 10 Apr 2003 18:39:21 +0000 Subject: [PATCH] #include to avoid warnings on some systems about no malloc proto. --- source/parse.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/parse.y b/source/parse.y index 8577dff..99ea76d 100644 --- a/source/parse.y +++ b/source/parse.y @@ -1,4 +1,4 @@ -/* $Id: parse.y,v 1.23 2002/12/12 17:25:59 slobasso Exp $ */ +/* $Id: parse.y,v 1.24 2003/04/10 18:39:21 tringali Exp $ */ %{ #ifdef HAVE_CONFIG_H #include "../config.h" @@ -10,6 +10,7 @@ #include "rbTree.h" #include "interpret.h" +#include #include #include #include @@ -37,7 +38,7 @@ /* Max. length for a string constant (... there shouldn't be a maximum) */ #define MAX_STRING_CONST_LEN 5000 -static const char CVSID[] = "$Id: parse.y,v 1.23 2002/12/12 17:25:59 slobasso Exp $"; +static const char CVSID[] = "$Id: parse.y,v 1.24 2003/04/10 18:39:21 tringali Exp $"; static int yyerror(char *s); static int yylex(void); int yyparse(void); -- 2.11.4.GIT