From: matthewc Date: Tue, 14 May 2002 08:23:11 +0000 (+0000) Subject: [project @ 2002-05-14 08:23:11 by matthewc] X-Git-Tag: Approx_11550_changesets_converted~2036 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=8f7779f8d0def3e9671a30ed146cd4c92beed538;p=ghc-hetmet.git [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) --- 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)