X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FWord.hs;h=c4bf0a6870fbdbe2bf383bfc4947671473f3382f;hb=cdd378d922a7bc4995c21643bf5d4d19581692ab;hp=3f2242300b4fc5a62dab40d9e38b927055565b97;hpb=e86c2ab298a9bb6ec7c8beec50d60427124317c0;p=ghc-base.git diff --git a/Data/Word.hs b/Data/Word.hs index 3f22423..c4bf0a6 100644 --- a/Data/Word.hs +++ b/Data/Word.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Word @@ -14,16 +14,16 @@ ----------------------------------------------------------------------------- module Data.Word - ( - -- * Unsigned integral types + ( + -- * Unsigned integral types - Word, - Word8, Word16, Word32, Word64, - - -- * Notes - - -- $notes - ) where + Word, + Word8, Word16, Word32, Word64, + + -- * Notes + + -- $notes + ) where #ifdef __GLASGOW_HASKELL__ import GHC.Word @@ -35,7 +35,7 @@ import Hugs.Word #ifdef __NHC__ import NHC.FFI (Word8, Word16, Word32, Word64) -import NHC.SizedTypes (Word8, Word16, Word32, Word64) -- instances of Bits +import NHC.SizedTypes (Word8, Word16, Word32, Word64) -- instances of Bits type Word = Word32 #endif