X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FBool.hs;h=2232aa3e33a7b3cfedba90f5a56aefa4ca76d9d7;hb=5c72582ffd19df4906f800e073bea89d68bbb93b;hp=66b804a2df4e28ce8f9bfb9d40a669c113145bb8;hpb=86a17d42a36c3272e993854b9bfa2276ae669324;p=ghc-base.git diff --git a/Data/Bool.hs b/Data/Bool.hs index 66b804a..2232aa3 100644 --- a/Data/Bool.hs +++ b/Data/Bool.hs @@ -26,3 +26,14 @@ module Data.Bool ( #ifdef __GLASGOW_HASKELL__ import GHC.Base #endif + +#ifdef __NHC__ +import Prelude +import Prelude + ( Bool(..) + , (&&) + , (||) + , not + , otherwise + ) +#endif