Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/libraries/Cabal/Distribution/Compat/Exception.hs

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


{-# OPTIONS -cpp #-}
-- #hide
module Distribution.Compat.Exception (bracket,finally) where

#ifdef __NHC__
import System.IO.Error (catch, ioError)
import IO (bracket)
#else
import Control.Exception (bracket,finally)
#endif

#ifdef __NHC__
finally :: IO a -> IO b -> IO a
finally thing after = bracket (return ()) (const after) (const thing)
#endif

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.