aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/User.hsc
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/User.hsc
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/User.hsc')
-rw-r--r--System/Posix/User.hsc5
1 files changed, 3 insertions, 2 deletions
diff --git a/System/Posix/User.hsc b/System/Posix/User.hsc
index 30c5c71..ff7268f 100644
--- a/System/Posix/User.hsc
+++ b/System/Posix/User.hsc
@@ -1,4 +1,3 @@
-{-# LANGUAGE ForeignFunctionInterface #-}
#ifdef __GLASGOW_HASKELL__
{-# LANGUAGE Trustworthy #-}
#endif
@@ -51,9 +50,11 @@ module System.Posix.User (
#include "HsUnix.h"
import System.Posix.Types
-import Foreign
import System.IO.Unsafe (unsafePerformIO)
import Foreign.C
+import Foreign.Ptr
+import Foreign.Marshal
+import Foreign.Storable
import System.Posix.Internals ( CGroup, CPasswd )
#if !defined(HAVE_GETPWNAM_R) || !defined(HAVE_GETPWUID_R) || defined(HAVE_GETPWENT) || defined(HAVE_GETGRENT)