Skip to content
Snippets Groups Projects
Commit 8ab73b40 authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 2000-04-13 19:31:05 by panne]

Bootstrapping fun:

   * Addr is an abstract type in Addr, so import from PrelAddr instead
   * Ignore the (recently introduced) return value of hPutBuf{,BA}

Probably more to come. No problem, as long as I don't run out of malt
first... %-)
parent b982e78c
No related merge requests found
......@@ -86,7 +86,7 @@ import PrelIOBase ( Handle__(..), IOError(..), IOErrorType(..),
import PrimPacked
import GlaExts
import Addr ( Addr(..) )
import PrelAddr ( Addr(..) )
#if __GLASGOW_HASKELL__ < 407
import MutableArray ( MutableArray(..) )
#else
......@@ -640,6 +640,7 @@ hPutFS handle (FastString _ l# ba#)
#else
| otherwise = do mba <- stToIO $ unsafeThawByteArray (ByteArray (bot::Int) bot ba#)
hPutBufBA handle mba (I# l#)
return ()
#endif
where
bot = error "hPutFS.ba"
......@@ -648,7 +649,7 @@ hPutFS handle (FastString _ l# ba#)
hPutFS handle (CharStr a# l#)
| l# ==# 0# = return ()
| otherwise = hPutBuf handle (A# a#) (I# l#)
| otherwise = do hPutBuf handle (A# a#) (I# l#) ; return ()
#endif
......
......@@ -31,7 +31,7 @@ module PrimPacked
#include "HsVersions.h"
import GlaExts
import Addr ( Addr(..) )
import PrelAddr ( Addr(..) )
import ST
import Foreign
-- ForeignObj is now exported abstractly.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment