aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix.hs
diff options
context:
space:
mode:
authorGravatar Herbert Valerio Riedel <hvr@gnu.org>2013-10-12 13:01:50 +0200
committerGravatar Herbert Valerio Riedel <hvr@gnu.org>2013-10-12 13:01:50 +0200
commit43de23c79db9e6e9a6de984b964cc9bdf74e50c2 (patch)
tree57179f113ca818097ab3c19fba59a6535ef34c11 /System/Posix.hs
parent6944df0d5bd6899ff61811f23cd4c03d1f595db3 (diff)
Declare language extensions via `{-# LANGUAGE -#}`
Only language extensions not active when `-XHaskell2010` is enabled are declared, this way we can drop many redundant `{-# LANGUAGE ForeignFunctionInterface #-}` occurences. This commit also removes/replaces some `{-# OPTIONS_GHC -XRecordWildCards #-}` pragmas. Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'System/Posix.hs')
-rw-r--r--System/Posix.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/System/Posix.hs b/System/Posix.hs
index 5c6a503..09bdde6 100644
--- a/System/Posix.hs
+++ b/System/Posix.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
#ifdef __GLASGOW_HASKELL__
{-# LANGUAGE Safe #-}
#endif