From: sven.panne@aedion.de Date: Sun, 25 Feb 2007 10:56:20 +0000 (+0000) Subject: FDs are CInts now, fixing non-GHC builds X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=ca62dee208f7d904983ae38249de280ad62d7c4f;p=ghc-base.git FDs are CInts now, fixing non-GHC builds --- diff --git a/System/Posix/Internals.hs b/System/Posix/Internals.hs index a39c66d..a679949 100644 --- a/System/Posix/Internals.hs +++ b/System/Posix/Internals.hs @@ -66,7 +66,7 @@ type CUtimbuf = () type CUtsname = () #ifndef __GLASGOW_HASKELL__ -type FD = Int +type FD = CInt #endif -- ---------------------------------------------------------------------------