1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
5 -- Copyright : (c) The FFI task force 2001
6 -- License : BSD-style (see the file libraries/base/LICENSE)
8 -- Maintainer : ffi@haskell.org
9 -- Stability : provisional
10 -- Portability : portable
12 -- A collection of data types, classes, and functions for interfacing
13 -- with another programming language.
15 -----------------------------------------------------------------------------
21 , module Foreign
.ForeignPtr
22 , module Foreign
.StablePtr
23 , module Foreign
.Storable
24 , module Foreign
.Marshal
.Alloc
25 , module Foreign
.Marshal
.Array
26 , module Foreign
.Marshal
.Error
27 , module Foreign
.Marshal
.Utils
33 import Foreign
.ForeignPtr
34 import Foreign
.StablePtr
35 import Foreign
.Storable
36 import Foreign
.Marshal
.Alloc
37 import Foreign
.Marshal
.Array
38 import Foreign
.Marshal
.Error
39 import Foreign
.Marshal
.Utils