final revision to GArrow classes
[ghc-base.git] / Foreign / C.hs
1 {-# LANGUAGE NoImplicitPrelude #-}
2
3 -----------------------------------------------------------------------------
4 -- |
5 -- Module      :  Foreign.C
6 -- Copyright   :  (c) The FFI task force 2001
7 -- License     :  BSD-style (see the file libraries/base/LICENSE)
8 -- 
9 -- Maintainer  :  ffi@haskell.org
10 -- Stability   :  provisional
11 -- Portability :  portable
12 --
13 -- Bundles the C specific FFI library functionality
14 --
15 -----------------------------------------------------------------------------
16
17 module Foreign.C
18         ( module Foreign.C.Types
19         , module Foreign.C.String
20         , module Foreign.C.Error
21         ) where
22
23 import Foreign.C.Types
24 import Foreign.C.String
25 import Foreign.C.Error