[project @ 1996-01-22 18:37:39 by partain]
[ghc-hetmet.git] / ghc / lib / prelude / FoldrBuild.hs
index 5d7175a..ce36edd 100644 (file)
@@ -18,7 +18,6 @@ foldl                 :: (a -> b -> a) -> a -> [b] -> a
 foldl f z []           =  z
 foldl f z (x:xs)       =  foldl f (f z x) xs
 
-
 -- HACK: Magic unfoldings not implemented for unboxed lists
 --      Need to define a _build to avoid undefined symbol