diff options
author | sof <unknown> | 1999-03-23 08:57:19 +0000 |
---|---|---|
committer | sof <unknown> | 1999-03-23 08:57:19 +0000 |
commit | 68af1f55ccef1113ac829cc46cb1330d81257741 (patch) | |
tree | 310e13f8ea49c6ca2e0f3ece1cca093f9c6707c4 | |
parent | bf3641aef9cd272a477d5fbd177b539050add2a5 (diff) | |
download | haskell-68af1f55ccef1113ac829cc46cb1330d81257741.tar.gz |
[project @ 1999-03-23 08:57:19 by sof]
Int and Word have to be treated like other Prelude modules in a DLLish
world.
-rw-r--r-- | ghc/compiler/prelude/PrelMods.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/prelude/PrelMods.lhs b/ghc/compiler/prelude/PrelMods.lhs index 5902c4b620..e2e9b433f2 100644 --- a/ghc/compiler/prelude/PrelMods.lhs +++ b/ghc/compiler/prelude/PrelMods.lhs @@ -61,8 +61,8 @@ mAIN = mkSrcModule "Main" iNT, wORD :: Module -iNT = mkSrcModule "Int" -wORD = mkSrcModule "Word" +iNT = mkPrelModule "Int" +wORD = mkPrelModule "Word" \end{code} |