cb8dfef3b5ed2ae60d37536952faaa13a1953625
[ghc-base.git] / Foreign / C.hs
1 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
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.String
19         , module Foreign.C.Error
20         ) where
21
22 import Foreign.C.Types
23 import Foreign.C.String
24 import Foreign.C.Error