From: Duncan Coutts Date: Wed, 17 May 2006 22:20:44 +0000 (+0000) Subject: add import Prelude to get dependencies right for Data/Fixed.hs X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=0df0a6b4d9d9bc5faa3ff8a9a886e20b5fd4e30c;p=ghc-base.git add import Prelude to get dependencies right for Data/Fixed.hs Hopefully this fixes parallel builds. --- diff --git a/Data/Fixed.hs b/Data/Fixed.hs index 11fd4d1..2b4fb26 100644 --- a/Data/Fixed.hs +++ b/Data/Fixed.hs @@ -31,6 +31,8 @@ module Data.Fixed E12,Pico ) where +import Prelude -- necessary to get dependencies right + -- | generalisation of 'div' to any instance of Real div' :: (Real a,Integral b) => a -> a -> b div' n d = floor ((toRational n) / (toRational d))