From 8f7779f8d0def3e9671a30ed146cd4c92beed538 Mon Sep 17 00:00:00 2001 From: matthewc Date: Tue, 14 May 2002 08:23:11 +0000 Subject: [PATCH] [project @ 2002-05-14 08:23:11 by matthewc] Need #include for malloc (otherwise the C compiler will assume the return value is an int, with bad results) --- ghc/utils/unlit/unlit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc/utils/unlit/unlit.c b/ghc/utils/unlit/unlit.c index a9645fb..ab3186a 100644 --- a/ghc/utils/unlit/unlit.c +++ b/ghc/utils/unlit/unlit.c @@ -41,6 +41,7 @@ */ #include +#include #include #define NULLSTR ((char *)0) -- 1.7.10.4