From: sof Date: Fri, 14 Aug 1998 11:37:48 +0000 (+0000) Subject: [project @ 1998-08-14 11:37:48 by sof] X-Git-Tag: Approx_2487_patches~404 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=55097a5b5b57a2cee0a8a678ef8ee3487136bb61;p=ghc-hetmet.git [project @ 1998-08-14 11:37:48 by sof] Needed to snaffle bits and pieces out of Int and Word, so add --- diff --git a/ghc/compiler/prelude/PrelMods.lhs b/ghc/compiler/prelude/PrelMods.lhs index 9153a0b..78338ce 100644 --- a/ghc/compiler/prelude/PrelMods.lhs +++ b/ghc/compiler/prelude/PrelMods.lhs @@ -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}