From 25116a306598b8f30606552a4570f752ac141397 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Apr 1996 11:01:27 -0300 Subject: "malloc.h" is not ansi. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index f7a6ac7c..fd7b562a 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.21 1996/03/05 15:57:53 roberto Exp roberto $ +# $Id: makefile,v 1.22 1996/03/15 18:22:09 roberto Exp roberto $ #configuration @@ -52,7 +52,7 @@ y.tab.c y.tab.h : lua.stx yacc++ -d lua.stx parser.c : y.tab.c - sed -e 's/yy/luaY_/g' y.tab.c > parser.c + sed -e 's/yy/luaY_/g' -e 's/malloc\.h/stdlib\.h/g' y.tab.c > parser.c parser.h : y.tab.h sed -e 's/yy/luaY_/g' y.tab.h > parser.h -- cgit v1.2.3-55-g6feb