[project @ 2001-07-04 11:06:39 by simonmar]
authorsimonmar <unknown>
Wed, 4 Jul 2001 11:06:39 +0000 (11:06 +0000)
committersimonmar <unknown>
Wed, 4 Jul 2001 11:06:39 +0000 (11:06 +0000)
Add Generics library

Data/Generics.hs [new file with mode: 0644]

diff --git a/Data/Generics.hs b/Data/Generics.hs
new file mode 100644 (file)
index 0000000..b144a38
--- /dev/null
@@ -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