From: ross Date: Fri, 30 Jul 2004 23:29:41 +0000 (+0000) Subject: [project @ 2004-07-30 23:29:41 by ross] X-Git-Tag: nhc98-1-18-release~284 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=224d5f606cd66e19381e6ae32419e916fdf34e6e;p=haskell-directory.git [project @ 2004-07-30 23:29:41 by ross] copyFile is GHC-only at the moment --- diff --git a/System/Directory.hs b/System/Directory.hs index 2a1fa3c..7d92473 100644 --- a/System/Directory.hs +++ b/System/Directory.hs @@ -28,7 +28,9 @@ module System.Directory -- * Actions on files , removeFile -- :: FilePath -> IO () , renameFile -- :: FilePath -> FilePath -> IO () +#ifdef __GLASGOW_HASKELL__ , copyFile -- :: FilePath -> FilePath -> IO () +#endif -- * Existence tests , doesFileExist -- :: FilePath -> IO Bool