From: Malcolm.Wallace@cs.york.ac.uk Date: Fri, 25 May 2007 10:25:40 +0000 (+0000) Subject: Cpp exclusion macro -> defined(__GLASGOW_HASKELL__) || defined(__HUGS__) X-Git-Tag: 2007-09-13~14 X-Git-Url: http://git.megacz.com/?p=haskell-directory.git;a=commitdiff_plain;h=5b58634af04aad9d56538481caf272e02b0d89c3 Cpp exclusion macro -> defined(__GLASGOW_HASKELL__) || defined(__HUGS__) Nhc98 does not define the symbol __NHC__ when compiling C code. --- diff --git a/cbits/directory.c b/cbits/directory.c index f85b57a..6ea722b 100644 --- a/cbits/directory.c +++ b/cbits/directory.c @@ -1,4 +1,4 @@ -#ifndef __NHC__ +#if defined(__GLASGOW_HASKELL__) || defined(__HUGS__) /* * (c) The University of Glasgow 2002 *