[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / Foreign / C.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  Foreign.C
5 -- Copyright   :  (c) The FFI task force 2001
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 -- 
8 -- Maintainer  :  ffi@haskell.org
9 -- Stability   :  provisional
10 -- Portability :  portable
11 --
12 -- Bundles the C specific FFI library functionality
13 --
14 -----------------------------------------------------------------------------
15
16 module Foreign.C
17         ( module Foreign.C.Types
18         , module Foreign.C.TypesISO
19         , module Foreign.C.String
20         , module Foreign.C.Error
21         ) where
22
23 import Foreign.C.Types
24 import Foreign.C.TypesISO
25 import Foreign.C.String
26 import Foreign.C.Error