add Data.Sequence to nhc98 build
[haskell-directory.git] / Data / Complex.hs
index 20448c7..749ba91 100644 (file)
@@ -43,9 +43,7 @@ module Data.Complex
 
 import Prelude
 
-#ifndef __NHC__
 import Data.Typeable
-#endif
 
 #ifdef __HUGS__
 import Hugs.Prelude(Num(fromInt), Fractional(fromDouble))
@@ -120,10 +118,8 @@ phase (x:+y)        = atan2 y x
 -- -----------------------------------------------------------------------------
 -- Instances of Complex
 
-#ifndef __NHC__
 #include "Typeable.h"
 INSTANCE_TYPEABLE1(Complex,complexTc,"Complex")
-#endif
 
 instance  (RealFloat a) => Num (Complex a)  where
     {-# SPECIALISE instance Num (Complex Float) #-}