f961b8f7d9f3429171a1c7367d6412b4bb6a7343
[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/core/LICENSE)
7 -- 
8 -- Maintainer  :  ffi@haskell.org
9 -- Stability   :  provisional
10 -- Portability :  portable
11 --
12 -- $Id: C.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $
13 --
14 -- Bundles the C specific FFI library functionality
15 --
16 -----------------------------------------------------------------------------
17
18 module Foreign.C
19         ( module Foreign.C.Types
20         , module Foreign.C.TypesISO
21         , module Foreign.C.String
22         , module Foreign.C.Error
23         ) where
24
25 import Foreign.C.Types
26 import Foreign.C.TypesISO
27 import Foreign.C.String
28 import Foreign.C.Error