Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Binary/CloseBin_.hs
module NHC.Binary ( closeBin ) where import NHC.GreenCard import BinHandle ({-type-}BinHandle(..)) foreign import ccall hs_closeBin :: ForeignObj -> IO () closeBin :: BinHandle -> IO () closeBin (BH bh) = do res1 <- hs_closeBin bh return res1