[project @ 2000-10-27 14:36:16 by simonmar]
authorsimonmar <unknown>
Fri, 27 Oct 2000 14:36:16 +0000 (14:36 +0000)
committersimonmar <unknown>
Fri, 27 Oct 2000 14:36:16 +0000 (14:36 +0000)
s/allocMemory__/malloc

ghc/compiler/utils/StringBuffer.lhs

index f84311b..84bfeb3 100644 (file)
@@ -293,13 +293,12 @@ reAllocMem ptr sz = do
 
 allocMem :: Int -> IO Addr
 allocMem sz = do
-#if __GLASGOW_HASKELL__ < 303
    chunk <- _ccall_ malloc sz
+#if __GLASGOW_HASKELL__ < 303
    if chunk == nullAddr 
       then fail (userError "allocMem")
       else return chunk
 #else
-   chunk <- _ccall_ allocMemory__ sz
    if chunk == nullAddr 
       then constructErrorAndFail "allocMem"
       else return chunk