diff options
author | Ian Lynagh <igloo@earth.li> | 2008-03-23 18:25:57 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-03-23 18:25:57 +0000 |
commit | fcf6b22d0478be20e27c2245f3e34dd272e12522 (patch) | |
tree | 7b33e0ecfddef9bd27f963b13e332baca0ae4db4 /rts/Prelude.h | |
parent | 7f0471be1cfe0ef6110ef7fdd8132d85387d0b21 (diff) | |
download | haskell-fcf6b22d0478be20e27c2245f3e34dd272e12522.tar.gz |
Follow library changes
Integer, Bool and Unit/Inl/Inr are now in new packages integer
and ghc-prim.
Diffstat (limited to 'rts/Prelude.h')
-rw-r--r-- | rts/Prelude.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rts/Prelude.h b/rts/Prelude.h index 31fe136d36..f237e59bea 100644 --- a/rts/Prelude.h +++ b/rts/Prelude.h @@ -24,8 +24,8 @@ * modules these names are defined in. */ -PRELUDE_CLOSURE(base_GHCziBase_True_closure); -PRELUDE_CLOSURE(base_GHCziBase_False_closure); +PRELUDE_CLOSURE(ghczmprim_GHCziBool_True_closure); +PRELUDE_CLOSURE(ghczmprim_GHCziBool_False_closure); PRELUDE_CLOSURE(base_GHCziPack_unpackCString_closure); PRELUDE_CLOSURE(base_GHCziWeak_runFinalizzerBatch_closure); @@ -79,8 +79,8 @@ PRELUDE_INFO(base_GHCziWord_W64zh_con_info); PRELUDE_INFO(base_GHCziStable_StablePtr_static_info); PRELUDE_INFO(base_GHCziStable_StablePtr_con_info); -#define True_closure DLL_IMPORT_DATA_REF(base_GHCziBase_True_closure) -#define False_closure DLL_IMPORT_DATA_REF(base_GHCziBase_False_closure) +#define True_closure DLL_IMPORT_DATA_REF(ghczmprim_GHCziBool_True_closure) +#define False_closure DLL_IMPORT_DATA_REF(ghczmprim_GHCziBool_False_closure) #define unpackCString_closure DLL_IMPORT_DATA_REF(base_GHCziPack_unpackCString_closure) #define runFinalizerBatch_closure DLL_IMPORT_DATA_REF(base_GHCziWeak_runFinalizzerBatch_closure) #define mainIO_closure (&ZCMain_main_closure) |