82a08c88728d28ab2b66353d75a693c34b58c717
[ghc-base.git] / Data / Generics.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Data.Generics
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable
10 --
11 -- Data types for generic definitions.
12 --
13 -----------------------------------------------------------------------------
14
15 module Data.Generics ( 
16 #ifdef __GLASGOW_HASKELL__
17         module GHC.Base
18 #endif
19  ) where
20
21 import Prelude
22
23 #ifdef __GLASGOW_HASKELL__
24 import GHC.Base ( (:*:)(..), (:+:)(..), Unit(..) )
25 #endif