b144a38a180ed910d5408088d93ba815f0f6f953
[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 -- $Id: Generics.hs,v 1.1 2001/07/04 11:06:39 simonmar Exp $
12 --
13 -- Data types for generic definitions.
14 --
15 -----------------------------------------------------------------------------
16
17 module Data.Generics ( 
18 #ifdef __GLASGOW_HASKELL__
19         module GHC.Base
20 #endif
21  ) where
22
23 import Prelude
24
25 #ifdef __GLASGOW_HASKELL__
26 import GHC.Base ( (:*:)(..), (:+:)(..), Unit(..) )
27 #endif