From: simonmar Date: Wed, 4 Jul 2001 11:06:39 +0000 (+0000) Subject: [project @ 2001-07-04 11:06:39 by simonmar] X-Git-Tag: nhc98-1-18-release~1221 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=41ee30f6abc085e7720ee905c6254ed5b1e6e337;p=ghc-base.git [project @ 2001-07-04 11:06:39 by simonmar] Add Generics library --- diff --git a/Data/Generics.hs b/Data/Generics.hs new file mode 100644 index 0000000..b144a38 --- /dev/null +++ b/Data/Generics.hs @@ -0,0 +1,27 @@ +----------------------------------------------------------------------------- +-- +-- Module : Data.Generics +-- Copyright : (c) The University of Glasgow 2001 +-- License : BSD-style (see the file libraries/core/LICENSE) +-- +-- Maintainer : libraries@haskell.org +-- Stability : experimental +-- Portability : non-portable +-- +-- $Id: Generics.hs,v 1.1 2001/07/04 11:06:39 simonmar Exp $ +-- +-- Data types for generic definitions. +-- +----------------------------------------------------------------------------- + +module Data.Generics ( +#ifdef __GLASGOW_HASKELL__ + module GHC.Base +#endif + ) where + +import Prelude + +#ifdef __GLASGOW_HASKELL__ +import GHC.Base ( (:*:)(..), (:+:)(..), Unit(..) ) +#endif