X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FBool.hs;h=0e1453846a780b7fbd6426447ede7dd08f5d1307;hb=e953c1ea5f8d6d6c56d5e829eb434caf9059fd71;hp=66b804a2df4e28ce8f9bfb9d40a669c113145bb8;hpb=86a17d42a36c3272e993854b9bfa2276ae669324;p=haskell-directory.git diff --git a/Data/Bool.hs b/Data/Bool.hs index 66b804a..0e14538 100644 --- a/Data/Bool.hs +++ b/Data/Bool.hs @@ -1,4 +1,4 @@ -{-# OPTIONS -fno-implicit-prelude #-} +{-# OPTIONS_GHC -fno-implicit-prelude #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Bool @@ -26,3 +26,14 @@ module Data.Bool ( #ifdef __GLASGOW_HASKELL__ import GHC.Base #endif + +#ifdef __NHC__ +import Prelude +import Prelude + ( Bool(..) + , (&&) + , (||) + , not + , otherwise + ) +#endif