aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Process.hsc
diff options
context:
space:
mode:
authorGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-01-30 23:14:23 +0100
committerGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-01-31 00:19:53 +0100
commit2a49ad87b7b5d92bf62035d410c4bcde817d30a6 (patch)
tree6cba2a97efac7cea6153e6dd10bdc04cd6e669c6 /System/Posix/Process.hsc
parent716eccb11f324abc120c24ce0344b7094f1aa435 (diff)
Drop redundant __GLASGOW_HASKELL__ conditionals for GHC>=7.4
Diffstat (limited to 'System/Posix/Process.hsc')
-rw-r--r--System/Posix/Process.hsc4
1 files changed, 1 insertions, 3 deletions
diff --git a/System/Posix/Process.hsc b/System/Posix/Process.hsc
index 72da1c6..afdb164 100644
--- a/System/Posix/Process.hsc
+++ b/System/Posix/Process.hsc
@@ -1,6 +1,6 @@
#if __GLASGOW_HASKELL__ >= 709
{-# LANGUAGE Safe #-}
-#elif __GLASGOW_HASKELL__ >= 703
+#else
{-# LANGUAGE Trustworthy #-}
#endif
-----------------------------------------------------------------------------
@@ -22,10 +22,8 @@ module System.Posix.Process (
-- * Processes
-- ** Forking and executing
-#ifdef __GLASGOW_HASKELL__
forkProcess,
forkProcessWithUnmask,
-#endif
executeFile,
-- ** Exiting