From f2ee01e06cc9a596f1495b6e675eae871bb27d94 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 11 Feb 2002 12:28:31 +0000 Subject: [PATCH] [project @ 2002-02-11 12:28:31 by simonmar] Export the various memcpy functions (following ghc/lib/std/PrelIO.hs) --- GHC/IO.hs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/GHC/IO.hs b/GHC/IO.hs index 39725a5..bd0ce45 100644 --- a/GHC/IO.hs +++ b/GHC/IO.hs @@ -3,7 +3,7 @@ #undef DEBUG_DUMP -- ----------------------------------------------------------------------------- --- $Id: IO.hs,v 1.4 2002/02/07 11:13:30 simonmar Exp $ +-- $Id: IO.hs,v 1.5 2002/02/11 12:28:31 simonmar Exp $ -- -- (c) The University of Glasgow, 1992-2001 -- @@ -12,7 +12,11 @@ module GHC.IO ( hWaitForInput, hGetChar, hGetLine, hGetContents, hPutChar, hPutStr, commitBuffer', -- hack, see below hGetcBuffered, -- needed by ghc/compiler/utils/StringBuffer.lhs - hGetBuf, hPutBuf, slurpFile + hGetBuf, hPutBuf, slurpFile, + memcpy_ba_baoff, + memcpy_ptr_baoff, + memcpy_baoff_ba, + memcpy_baoff_ptr, ) where import Foreign -- 1.7.10.4