packages feed

signal 0.1.0.1 → 0.1.0.2

raw patch · 2 files changed

+4/−3 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ System.Signal: type Signal = CInt

Files

signal.cabal view
@@ -1,5 +1,5 @@ name:                signal-version:             0.1.0.1+version:             0.1.0.2 license:             MIT license-file:        LICENSE author:              Piotr Mlodawski
src/System/Signal.hs view
@@ -2,8 +2,7 @@  module System.Signal where -import Foreign.C.Types (CInt)-import GHC.Conc        (Signal)+import Foreign.C.Types #ifdef mingw32_HOST_OS import Control.Exception.Base (assert) import Foreign@@ -12,6 +11,8 @@ import qualified System.Posix.Signals as Posix #endif ++type Signal = CInt  -- | SIGABRT - Abnormal termination sigABRT :: Signal