[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / Data / Int.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  Data.Int
5 -- Copyright   :  (c) The University of Glasgow 2001
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 -- 
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  experimental
10 -- Portability :  portable
11 --
12 -- Sized Integer types.
13 --
14 -----------------------------------------------------------------------------
15
16 module Data.Int
17         ( Int8
18         , Int16
19         , Int32
20         , Int64
21         -- instances: Eq, Ord, Num, Bounded, Real, Integral, Ix, Enum, Read,
22         -- Show, Bits, CCallable, CReturnable (last two are GHC specific.)
23         ) where
24
25 #ifdef __GLASGOW_HASKELL__
26 import GHC.Int
27 #endif