2020233d15cd03725c65a544e66a6e6ec32c3147
[ghc-base.git] / Data / Eq.hs
1 {-# OPTIONS_GHC -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  Data.Eq
5 -- Copyright   :  (c) The University of Glasgow 2005
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 -- 
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  stable
10 -- Portability :  portable
11 --
12 -- Equality
13 --
14 -----------------------------------------------------------------------------
15
16 module Data.Eq (
17    Eq(..),
18  ) where
19
20 #if __GLASGOW_HASKELL__
21 import GHC.Base
22 #endif