From 97ba2290a2d8da19481b1c60352e1f5fe6e05cdc Mon Sep 17 00:00:00 2001 From: ross Date: Sat, 23 Aug 2003 10:25:52 +0000 Subject: [PATCH] [project @ 2003-08-23 10:25:52 by ross] non-GHC only: hide functions defined in the Prelude --- Data/List.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/List.hs b/Data/List.hs index 0a4bb20..fb1606d 100644 --- a/Data/List.hs +++ b/Data/List.hs @@ -722,7 +722,6 @@ product l = prod l 1 prod [] a = a prod (x:xs) a = prod xs (a*x) #endif -#endif /* __GLASGOW_HASKELL__ */ -- ----------------------------------------------------------------------------- -- Functions on strings @@ -769,3 +768,4 @@ unwords [] = "" unwords [w] = w unwords (w:ws) = w ++ ' ' : unwords ws #endif +#endif /* __GLASGOW_HASKELL__ */ -- 1.7.10.4