diff options
author | andy <unknown> | 2000-04-04 01:07:50 +0000 |
---|---|---|
committer | andy <unknown> | 2000-04-04 01:07:50 +0000 |
commit | be1966e78e545611f39eb2eed6f11fc60558100c (patch) | |
tree | 3b2a3b9d516021feb0ceae3368eadc7dcf107418 /ghc/interpreter/connect.h | |
parent | a84e2d973928854935b3bc1f498fd81ed17f6483 (diff) | |
download | haskell-be1966e78e545611f39eb2eed6f11fc60558100c.tar.gz |
[project @ 2000-04-04 01:07:49 by andy]
Adding in support for split Hugs Prelude.
There are now two preludes.
(1) PrimPrel - the Prelude defintions, and the extra magic datatypes.
(2) Prelude - the external interface for Prelude.
Diffstat (limited to 'ghc/interpreter/connect.h')
-rw-r--r-- | ghc/interpreter/connect.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ghc/interpreter/connect.h b/ghc/interpreter/connect.h index 3dacc5cadf..3c9d85868c 100644 --- a/ghc/interpreter/connect.h +++ b/ghc/interpreter/connect.h @@ -9,8 +9,8 @@ * included in the distribution. * * $RCSfile: connect.h,v $ - * $Revision: 1.33 $ - * $Date: 2000/03/24 14:32:03 $ + * $Revision: 1.34 $ + * $Date: 2000/04/04 01:07:49 $ * ------------------------------------------------------------------------*/ /* -------------------------------------------------------------------------- @@ -18,6 +18,7 @@ * Texts, Names, Instances, Classes, Types, Kinds and Modules * ------------------------------------------------------------------------*/ +extern Text textPrimPrel; extern Text textPrelude; extern Text textNum; /* used to process default decls */ extern Text textCcall; /* used to process foreign import */ @@ -220,10 +221,9 @@ extern Type typeST; extern Type typeIO; extern Type typeException; - +extern Module modulePrimPrel; extern Module modulePrelude; - extern Kind starToStar; /* Type -> Type */ |