add System.Posix.Types to default nhc98 build
[haskell-directory.git] / Data / Fixed.hs
index 11fd4d1..691a935 100644 (file)
@@ -1,4 +1,4 @@
-{-# OPTIONS -Wall -Werror -fno-warn-unused-binds #-}
+{-# OPTIONS -Wall -fno-warn-unused-binds #-}
 
 -----------------------------------------------------------------------------
 -- |
@@ -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))