[project @ 2005-01-07 11:37:02 by simonmar]
[ghc-base.git] / Foreign.hs
index e0f9e4c..fc25159 100644 (file)
 -----------------------------------------------------------------------------
 
 module Foreign
-        ( module Data.Int
+        ( module Data.Bits
+        , module Data.Int
         , module Data.Word
-        , module Foreign.Ptr
+       , module Foreign.Ptr
         , module Foreign.ForeignPtr
         , module Foreign.StablePtr
         , module Foreign.Storable
         , module Foreign.Marshal
 
-        -- For compatibility with the FFI addendum only.  The recommended
-        -- place to get this from is System.IO.Unsafe.
+        -- | For compatibility with the FFI addendum only.  The recommended
+        -- place to get this from is "System.IO.Unsafe".
         , unsafePerformIO
         ) where
 
+import Data.Bits
 import Data.Int
 import Data.Word
 import Foreign.Ptr