rebase 1.2.1 → 1.2.2
raw patch · 75 files changed
+596/−4 lines, 75 files
Files
- library/Rebase/Control/Monad/ST/Lazy/Safe.hs +7/−0
- library/Rebase/Control/Monad/ST/Safe.hs +7/−0
- library/Rebase/Foreign/ForeignPtr/Safe.hs +7/−0
- library/Rebase/Foreign/Marshal/Safe.hs +7/−0
- library/Rebase/Foreign/Safe.hs +7/−0
- library/Rebase/GHC/Arr.hs +7/−0
- library/Rebase/GHC/Base.hs +7/−0
- library/Rebase/GHC/Char.hs +7/−0
- library/Rebase/GHC/Conc.hs +7/−0
- library/Rebase/GHC/Conc/IO.hs +7/−0
- library/Rebase/GHC/Conc/Signal.hs +7/−0
- library/Rebase/GHC/Conc/Sync.hs +7/−0
- library/Rebase/GHC/ConsoleHandler.hs +7/−0
- library/Rebase/GHC/Constants.hs +7/−0
- library/Rebase/GHC/Desugar.hs +7/−0
- library/Rebase/GHC/Enum.hs +7/−0
- library/Rebase/GHC/Environment.hs +7/−0
- library/Rebase/GHC/Err.hs +7/−0
- library/Rebase/GHC/Exception.hs +7/−0
- library/Rebase/GHC/Exts.hs +7/−0
- library/Rebase/GHC/Fingerprint.hs +7/−0
- library/Rebase/GHC/Fingerprint/Type.hs +7/−0
- library/Rebase/GHC/Float.hs +7/−0
- library/Rebase/GHC/Float/ConversionUtils.hs +7/−0
- library/Rebase/GHC/Float/RealFracMethods.hs +7/−0
- library/Rebase/GHC/Foreign.hs +7/−0
- library/Rebase/GHC/ForeignPtr.hs +7/−0
- library/Rebase/GHC/GHCi.hs +7/−0
- library/Rebase/GHC/Generics.hs +7/−0
- library/Rebase/GHC/IO.hs +7/−0
- library/Rebase/GHC/IO/Buffer.hs +7/−0
- library/Rebase/GHC/IO/BufferedIO.hs +7/−0
- library/Rebase/GHC/IO/Device.hs +7/−0
- library/Rebase/GHC/IO/Encoding.hs +7/−0
- library/Rebase/GHC/IO/Encoding/CodePage.hs +7/−0
- library/Rebase/GHC/IO/Encoding/Failure.hs +7/−0
- library/Rebase/GHC/IO/Encoding/Iconv.hs +7/−0
- library/Rebase/GHC/IO/Encoding/Latin1.hs +7/−0
- library/Rebase/GHC/IO/Encoding/Types.hs +7/−0
- library/Rebase/GHC/IO/Encoding/UTF16.hs +7/−0
- library/Rebase/GHC/IO/Encoding/UTF32.hs +7/−0
- library/Rebase/GHC/IO/Encoding/UTF8.hs +7/−0
- library/Rebase/GHC/IO/Exception.hs +7/−0
- library/Rebase/GHC/IO/FD.hs +7/−0
- library/Rebase/GHC/IO/Handle.hs +7/−0
- library/Rebase/GHC/IO/Handle/FD.hs +7/−0
- library/Rebase/GHC/IO/Handle/Internals.hs +7/−0
- library/Rebase/GHC/IO/Handle/Text.hs +7/−0
- library/Rebase/GHC/IO/Handle/Types.hs +7/−0
- library/Rebase/GHC/IO/IOMode.hs +7/−0
- library/Rebase/GHC/IOArray.hs +7/−0
- library/Rebase/GHC/IORef.hs +7/−0
- library/Rebase/GHC/Int.hs +7/−0
- library/Rebase/GHC/List.hs +7/−0
- library/Rebase/GHC/MVar.hs +7/−0
- library/Rebase/GHC/Num.hs +7/−0
- library/Rebase/GHC/PArr.hs +7/−0
- library/Rebase/GHC/Pack.hs +7/−0
- library/Rebase/GHC/Profiling.hs +7/−0
- library/Rebase/GHC/Ptr.hs +7/−0
- library/Rebase/GHC/Read.hs +7/−0
- library/Rebase/GHC/Real.hs +7/−0
- library/Rebase/GHC/ST.hs +7/−0
- library/Rebase/GHC/STRef.hs +7/−0
- library/Rebase/GHC/Show.hs +7/−0
- library/Rebase/GHC/Stable.hs +7/−0
- library/Rebase/GHC/Stack.hs +7/−0
- library/Rebase/GHC/Stats.hs +7/−0
- library/Rebase/GHC/Storable.hs +7/−0
- library/Rebase/GHC/TopHandler.hs +7/−0
- library/Rebase/GHC/TypeLits.hs +7/−0
- library/Rebase/GHC/Unicode.hs +7/−0
- library/Rebase/GHC/Weak.hs +7/−0
- library/Rebase/GHC/Word.hs +7/−0
- rebase.cabal +78/−4
+ library/Rebase/Control/Monad/ST/Lazy/Safe.hs view
@@ -0,0 +1,7 @@+module Rebase.Control.Monad.ST.Lazy.Safe+(+ module Control.Monad.ST.Lazy.Safe+)+where++import Control.Monad.ST.Lazy.Safe
+ library/Rebase/Control/Monad/ST/Safe.hs view
@@ -0,0 +1,7 @@+module Rebase.Control.Monad.ST.Safe+(+ module Control.Monad.ST.Safe+)+where++import Control.Monad.ST.Safe
+ library/Rebase/Foreign/ForeignPtr/Safe.hs view
@@ -0,0 +1,7 @@+module Rebase.Foreign.ForeignPtr.Safe+(+ module Foreign.ForeignPtr.Safe+)+where++import Foreign.ForeignPtr.Safe
+ library/Rebase/Foreign/Marshal/Safe.hs view
@@ -0,0 +1,7 @@+module Rebase.Foreign.Marshal.Safe+(+ module Foreign.Marshal.Safe+)+where++import Foreign.Marshal.Safe
+ library/Rebase/Foreign/Safe.hs view
@@ -0,0 +1,7 @@+module Rebase.Foreign.Safe+(+ module Foreign.Safe+)+where++import Foreign.Safe
+ library/Rebase/GHC/Arr.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Arr+(+ module GHC.Arr+)+where++import GHC.Arr
+ library/Rebase/GHC/Base.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Base+(+ module GHC.Base+)+where++import GHC.Base
+ library/Rebase/GHC/Char.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Char+(+ module GHC.Char+)+where++import GHC.Char
+ library/Rebase/GHC/Conc.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Conc+(+ module GHC.Conc+)+where++import GHC.Conc
+ library/Rebase/GHC/Conc/IO.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Conc.IO+(+ module GHC.Conc.IO+)+where++import GHC.Conc.IO
+ library/Rebase/GHC/Conc/Signal.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Conc.Signal+(+ module GHC.Conc.Signal+)+where++import GHC.Conc.Signal
+ library/Rebase/GHC/Conc/Sync.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Conc.Sync+(+ module GHC.Conc.Sync+)+where++import GHC.Conc.Sync
+ library/Rebase/GHC/ConsoleHandler.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.ConsoleHandler+(+ module GHC.ConsoleHandler+)+where++import GHC.ConsoleHandler
+ library/Rebase/GHC/Constants.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Constants+(+ module GHC.Constants+)+where++import GHC.Constants
+ library/Rebase/GHC/Desugar.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Desugar+(+ module GHC.Desugar+)+where++import GHC.Desugar
+ library/Rebase/GHC/Enum.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Enum+(+ module GHC.Enum+)+where++import GHC.Enum
+ library/Rebase/GHC/Environment.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Environment+(+ module GHC.Environment+)+where++import GHC.Environment
+ library/Rebase/GHC/Err.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Err+(+ module GHC.Err+)+where++import GHC.Err
+ library/Rebase/GHC/Exception.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Exception+(+ module GHC.Exception+)+where++import GHC.Exception
+ library/Rebase/GHC/Exts.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Exts+(+ module GHC.Exts+)+where++import GHC.Exts
+ library/Rebase/GHC/Fingerprint.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Fingerprint+(+ module GHC.Fingerprint+)+where++import GHC.Fingerprint
+ library/Rebase/GHC/Fingerprint/Type.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Fingerprint.Type+(+ module GHC.Fingerprint.Type+)+where++import GHC.Fingerprint.Type
+ library/Rebase/GHC/Float.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Float+(+ module GHC.Float+)+where++import GHC.Float
+ library/Rebase/GHC/Float/ConversionUtils.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Float.ConversionUtils+(+ module GHC.Float.ConversionUtils+)+where++import GHC.Float.ConversionUtils
+ library/Rebase/GHC/Float/RealFracMethods.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Float.RealFracMethods+(+ module GHC.Float.RealFracMethods+)+where++import GHC.Float.RealFracMethods
+ library/Rebase/GHC/Foreign.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Foreign+(+ module GHC.Foreign+)+where++import GHC.Foreign
+ library/Rebase/GHC/ForeignPtr.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.ForeignPtr+(+ module GHC.ForeignPtr+)+where++import GHC.ForeignPtr
+ library/Rebase/GHC/GHCi.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.GHCi+(+ module GHC.GHCi+)+where++import GHC.GHCi
+ library/Rebase/GHC/Generics.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Generics+(+ module GHC.Generics+)+where++import GHC.Generics
+ library/Rebase/GHC/IO.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO+(+ module GHC.IO+)+where++import GHC.IO
+ library/Rebase/GHC/IO/Buffer.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Buffer+(+ module GHC.IO.Buffer+)+where++import GHC.IO.Buffer
+ library/Rebase/GHC/IO/BufferedIO.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.BufferedIO+(+ module GHC.IO.BufferedIO+)+where++import GHC.IO.BufferedIO
+ library/Rebase/GHC/IO/Device.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Device+(+ module GHC.IO.Device+)+where++import GHC.IO.Device
+ library/Rebase/GHC/IO/Encoding.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding+(+ module GHC.IO.Encoding+)+where++import GHC.IO.Encoding
+ library/Rebase/GHC/IO/Encoding/CodePage.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.CodePage+(+ module GHC.IO.Encoding.CodePage+)+where++import GHC.IO.Encoding.CodePage
+ library/Rebase/GHC/IO/Encoding/Failure.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.Failure+(+ module GHC.IO.Encoding.Failure+)+where++import GHC.IO.Encoding.Failure
+ library/Rebase/GHC/IO/Encoding/Iconv.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.Iconv+(+ module GHC.IO.Encoding.Iconv+)+where++import GHC.IO.Encoding.Iconv
+ library/Rebase/GHC/IO/Encoding/Latin1.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.Latin1+(+ module GHC.IO.Encoding.Latin1+)+where++import GHC.IO.Encoding.Latin1
+ library/Rebase/GHC/IO/Encoding/Types.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.Types+(+ module GHC.IO.Encoding.Types+)+where++import GHC.IO.Encoding.Types
+ library/Rebase/GHC/IO/Encoding/UTF16.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.UTF16+(+ module GHC.IO.Encoding.UTF16+)+where++import GHC.IO.Encoding.UTF16
+ library/Rebase/GHC/IO/Encoding/UTF32.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.UTF32+(+ module GHC.IO.Encoding.UTF32+)+where++import GHC.IO.Encoding.UTF32
+ library/Rebase/GHC/IO/Encoding/UTF8.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Encoding.UTF8+(+ module GHC.IO.Encoding.UTF8+)+where++import GHC.IO.Encoding.UTF8
+ library/Rebase/GHC/IO/Exception.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Exception+(+ module GHC.IO.Exception+)+where++import GHC.IO.Exception
+ library/Rebase/GHC/IO/FD.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.FD+(+ module GHC.IO.FD+)+where++import GHC.IO.FD
+ library/Rebase/GHC/IO/Handle.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Handle+(+ module GHC.IO.Handle+)+where++import GHC.IO.Handle
+ library/Rebase/GHC/IO/Handle/FD.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Handle.FD+(+ module GHC.IO.Handle.FD+)+where++import GHC.IO.Handle.FD
+ library/Rebase/GHC/IO/Handle/Internals.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Handle.Internals+(+ module GHC.IO.Handle.Internals+)+where++import GHC.IO.Handle.Internals
+ library/Rebase/GHC/IO/Handle/Text.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Handle.Text+(+ module GHC.IO.Handle.Text+)+where++import GHC.IO.Handle.Text
+ library/Rebase/GHC/IO/Handle/Types.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.Handle.Types+(+ module GHC.IO.Handle.Types+)+where++import GHC.IO.Handle.Types
+ library/Rebase/GHC/IO/IOMode.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IO.IOMode+(+ module GHC.IO.IOMode+)+where++import GHC.IO.IOMode
+ library/Rebase/GHC/IOArray.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IOArray+(+ module GHC.IOArray+)+where++import GHC.IOArray
+ library/Rebase/GHC/IORef.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.IORef+(+ module GHC.IORef+)+where++import GHC.IORef
+ library/Rebase/GHC/Int.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Int+(+ module GHC.Int+)+where++import GHC.Int
+ library/Rebase/GHC/List.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.List+(+ module GHC.List+)+where++import GHC.List
+ library/Rebase/GHC/MVar.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.MVar+(+ module GHC.MVar+)+where++import GHC.MVar
+ library/Rebase/GHC/Num.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Num+(+ module GHC.Num+)+where++import GHC.Num
+ library/Rebase/GHC/PArr.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.PArr+(+ module GHC.PArr+)+where++import GHC.PArr
+ library/Rebase/GHC/Pack.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Pack+(+ module GHC.Pack+)+where++import GHC.Pack
+ library/Rebase/GHC/Profiling.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Profiling+(+ module GHC.Profiling+)+where++import GHC.Profiling
+ library/Rebase/GHC/Ptr.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Ptr+(+ module GHC.Ptr+)+where++import GHC.Ptr
+ library/Rebase/GHC/Read.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Read+(+ module GHC.Read+)+where++import GHC.Read
+ library/Rebase/GHC/Real.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Real+(+ module GHC.Real+)+where++import GHC.Real
+ library/Rebase/GHC/ST.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.ST+(+ module GHC.ST+)+where++import GHC.ST
+ library/Rebase/GHC/STRef.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.STRef+(+ module GHC.STRef+)+where++import GHC.STRef
+ library/Rebase/GHC/Show.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Show+(+ module GHC.Show+)+where++import GHC.Show
+ library/Rebase/GHC/Stable.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Stable+(+ module GHC.Stable+)+where++import GHC.Stable
+ library/Rebase/GHC/Stack.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Stack+(+ module GHC.Stack+)+where++import GHC.Stack
+ library/Rebase/GHC/Stats.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Stats+(+ module GHC.Stats+)+where++import GHC.Stats
+ library/Rebase/GHC/Storable.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Storable+(+ module GHC.Storable+)+where++import GHC.Storable
+ library/Rebase/GHC/TopHandler.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.TopHandler+(+ module GHC.TopHandler+)+where++import GHC.TopHandler
+ library/Rebase/GHC/TypeLits.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.TypeLits+(+ module GHC.TypeLits+)+where++import GHC.TypeLits
+ library/Rebase/GHC/Unicode.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Unicode+(+ module GHC.Unicode+)+where++import GHC.Unicode
+ library/Rebase/GHC/Weak.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Weak+(+ module GHC.Weak+)+where++import GHC.Weak
+ library/Rebase/GHC/Word.hs view
@@ -0,0 +1,7 @@+module Rebase.GHC.Word+(+ module GHC.Word+)+where++import GHC.Word
rebase.cabal view
@@ -1,7 +1,7 @@ name: rebase version:- 1.2.1+ 1.2.2 synopsis: A more progressive alternative to the "base" package description:@@ -70,7 +70,9 @@ Rebase.Control.Monad.Fix Rebase.Control.Monad.ST Rebase.Control.Monad.ST.Lazy+ Rebase.Control.Monad.ST.Lazy.Safe Rebase.Control.Monad.ST.Lazy.Unsafe+ Rebase.Control.Monad.ST.Safe Rebase.Control.Monad.ST.Strict Rebase.Control.Monad.ST.Unsafe Rebase.Control.Monad.Zip@@ -87,8 +89,8 @@ Rebase.Data.Foldable Rebase.Data.Function Rebase.Data.Functor- Rebase.Data.IORef Rebase.Data.Int+ Rebase.Data.IORef Rebase.Data.Ix Rebase.Data.List Rebase.Data.Maybe@@ -117,27 +119,99 @@ Rebase.Foreign.C.Types Rebase.Foreign.Concurrent Rebase.Foreign.ForeignPtr+ Rebase.Foreign.ForeignPtr.Safe Rebase.Foreign.ForeignPtr.Unsafe Rebase.Foreign.Marshal Rebase.Foreign.Marshal.Alloc Rebase.Foreign.Marshal.Array Rebase.Foreign.Marshal.Error Rebase.Foreign.Marshal.Pool+ Rebase.Foreign.Marshal.Safe Rebase.Foreign.Marshal.Unsafe Rebase.Foreign.Marshal.Utils Rebase.Foreign.Ptr+ Rebase.Foreign.Safe Rebase.Foreign.StablePtr Rebase.Foreign.Storable+ Rebase.GHC.Arr+ Rebase.GHC.Base+ Rebase.GHC.Char+ Rebase.GHC.Conc+ Rebase.GHC.Conc.IO+ Rebase.GHC.Conc.Signal+ Rebase.GHC.Conc.Sync+ Rebase.GHC.ConsoleHandler+ Rebase.GHC.Constants+ Rebase.GHC.Desugar+ Rebase.GHC.Enum+ Rebase.GHC.Environment+ Rebase.GHC.Err+ Rebase.GHC.Exception+ Rebase.GHC.Exts+ Rebase.GHC.Fingerprint+ Rebase.GHC.Fingerprint.Type+ Rebase.GHC.Float+ Rebase.GHC.Float.ConversionUtils+ Rebase.GHC.Float.RealFracMethods+ Rebase.GHC.Foreign+ Rebase.GHC.ForeignPtr+ Rebase.GHC.Generics+ Rebase.GHC.GHCi+ Rebase.GHC.Int+ Rebase.GHC.IO+ Rebase.GHC.IO.Buffer+ Rebase.GHC.IO.BufferedIO+ Rebase.GHC.IO.Device+ Rebase.GHC.IO.Encoding+ Rebase.GHC.IO.Encoding.CodePage+ Rebase.GHC.IO.Encoding.Failure+ Rebase.GHC.IO.Encoding.Iconv+ Rebase.GHC.IO.Encoding.Latin1+ Rebase.GHC.IO.Encoding.Types+ Rebase.GHC.IO.Encoding.UTF16+ Rebase.GHC.IO.Encoding.UTF32+ Rebase.GHC.IO.Encoding.UTF8+ Rebase.GHC.IO.Exception+ Rebase.GHC.IO.FD+ Rebase.GHC.IO.Handle+ Rebase.GHC.IO.Handle.FD+ Rebase.GHC.IO.Handle.Internals+ Rebase.GHC.IO.Handle.Text+ Rebase.GHC.IO.Handle.Types+ Rebase.GHC.IO.IOMode+ Rebase.GHC.IOArray+ Rebase.GHC.IORef+ Rebase.GHC.List+ Rebase.GHC.MVar+ Rebase.GHC.Num+ Rebase.GHC.Pack+ Rebase.GHC.PArr+ Rebase.GHC.Profiling+ Rebase.GHC.Ptr+ Rebase.GHC.Read+ Rebase.GHC.Real+ Rebase.GHC.Show+ Rebase.GHC.ST+ Rebase.GHC.Stable+ Rebase.GHC.Stack+ Rebase.GHC.Stats+ Rebase.GHC.Storable+ Rebase.GHC.STRef+ Rebase.GHC.TopHandler+ Rebase.GHC.TypeLits+ Rebase.GHC.Unicode+ Rebase.GHC.Weak+ Rebase.GHC.Word Rebase.Numeric Rebase.Prelude- Rebase.System.CPUTime Rebase.System.Console.GetOpt+ Rebase.System.CPUTime Rebase.System.Environment Rebase.System.Exit+ Rebase.System.Info Rebase.System.IO Rebase.System.IO.Error Rebase.System.IO.Unsafe- Rebase.System.Info Rebase.System.Mem Rebase.System.Mem.StableName Rebase.System.Mem.Weak