add System.Posix.Types to default nhc98 build
[haskell-directory.git] / Foreign / Storable.hs-boot
1
2 {-# OPTIONS -fno-implicit-prelude #-}
3
4 module Foreign.Storable where
5
6 import GHC.Float
7 import GHC.Int
8 import GHC.Num
9 import GHC.Word
10
11 class Storable a
12
13 instance Storable Int8
14 instance Storable Int16
15 instance Storable Int32
16 instance Storable Int64
17 instance Storable Word8
18 instance Storable Word16
19 instance Storable Word32
20 instance Storable Word64
21 instance Storable Float
22 instance Storable Double
23