X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=System%2FExit.hs;h=7eb17cfbfe27f02b10c6a6dd1e2c00ff7d7816a0;hb=HEAD;hp=3377c5283a6ba96fe3e815325eb7c7c694d3022c;hpb=7dfe4a22aa6a2c598b1496c661c7d532aaafa94f;p=ghc-base.git diff --git a/System/Exit.hs b/System/Exit.hs index 3377c52..7eb17cf 100644 --- a/System/Exit.hs +++ b/System/Exit.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE CPP #-} + ----------------------------------------------------------------------------- -- | -- Module : System.Exit @@ -86,6 +88,6 @@ exitFailure = exitWith (ExitFailure 1) -- | The computation 'exitSuccess' is equivalent to -- 'exitWith' 'ExitSuccess', It terminates the program --- sucessfully. +-- successfully. exitSuccess :: IO a exitSuccess = exitWith ExitSuccess