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