Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/IO/IsEOFError.hs
module IO (isEOFError) where import DIOError isEOFError :: IOError -> Bool isEOFError (EOFError fun file) = True isEOFError ioerror = False