[project @ 1998-08-14 11:37:48 by sof]
authorsof <unknown>
Fri, 14 Aug 1998 11:37:48 +0000 (11:37 +0000)
committersof <unknown>
Fri, 14 Aug 1998 11:37:48 +0000 (11:37 +0000)
Needed to snaffle bits and pieces out of Int and Word, so add

ghc/compiler/prelude/PrelMods.lhs

index 9153a0b..78338ce 100644 (file)
@@ -14,7 +14,9 @@ module PrelMods
         (
        pREL_GHC, pRELUDE, mONAD, rATIO, iX, mAIN, pREL_MAIN, pREL_ERR,
        pREL_BASE, pREL_NUM, pREL_LIST, pREL_TUP, pREL_ADDR, pREL_READ,
-       pREL_PACK, pREL_CONC, pREL_IO_BASE, pREL_ST, pREL_ARR, pREL_FOREIGN
+       pREL_PACK, pREL_CONC, pREL_IO_BASE, pREL_ST, pREL_ARR, pREL_FOREIGN,
+
+       iNT, wORD
        ) where
 
 #include "HsVersions.h"
@@ -52,4 +54,9 @@ iX         = SLIT("Ix")
 pREL_MAIN    = SLIT("PrelMain")
 mAIN        = SLIT("Main")
 
+iNT, wORD   :: Module
+
+iNT         = SLIT("Int")
+wORD        = SLIT("Word")
+
 \end{code}