From 2b4cc79333ab348eb4d96c4ae65a1a47f0c259d4 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 29 Aug 2002 11:29:40 +0000 Subject: [PATCH] [project @ 2002-08-29 11:29:40 by simonmar] Foreign.C.TypesISO has been merged into Foreign.C.Types now. --- Foreign/C.hs | 2 -- Foreign/C/Types.hs | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Foreign/C.hs b/Foreign/C.hs index 7fb0e3c..6d6409f 100644 --- a/Foreign/C.hs +++ b/Foreign/C.hs @@ -15,12 +15,10 @@ module Foreign.C ( module Foreign.C.Types - , module Foreign.C.TypesISO , module Foreign.C.String , module Foreign.C.Error ) where import Foreign.C.Types -import Foreign.C.TypesISO import Foreign.C.String import Foreign.C.Error diff --git a/Foreign/C/Types.hs b/Foreign/C/Types.hs index df1b989..e953d4a 100644 --- a/Foreign/C/Types.hs +++ b/Foreign/C/Types.hs @@ -19,16 +19,24 @@ module Foreign.C.Types CChar(..), CSChar(..), CUChar(..) , CShort(..), CUShort(..), CInt(..), CUInt(..) , CLong(..), CULong(..) + , CPtrdiff(..), CSize(..), CWchar(..), CSigAtomic(..) #ifndef __HUGS__ , CLLong(..), CULLong(..) #endif + -- Numeric types, instances of: Eq, Ord, Num, Read, Show, Enum, + -- Typeable, Storable + , CClock(..), CTime(..) -- Floating types, instances of: Eq, Ord, Num, Read, Show, Enum, -- Typeable, Storable, Real, Fractional, Floating, RealFrac, -- RealFloat , CFloat(..), CDouble(..), CLDouble(..) + + -- Instances of: Eq and Storable + , CFile, CFpos, CJmpBuf ) where +import Foreign.C.TypesISO import Data.Bits ( Bits(..) ) import Data.Int ( Int8, Int16, Int32, Int64 ) import Data.Word ( Word8, Word16, Word32, Word64 ) -- 1.7.10.4