From 5b58634af04aad9d56538481caf272e02b0d89c3 Mon Sep 17 00:00:00 2001 From: "Malcolm.Wallace@cs.york.ac.uk" Date: Fri, 25 May 2007 10:25:40 +0000 Subject: [PATCH] Cpp exclusion macro -> defined(__GLASGOW_HASKELL__) || defined(__HUGS__) Nhc98 does not define the symbol __NHC__ when compiling C code. --- cbits/directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * -- 1.7.10.4