File: Types.hs

package info (click to toggle)
haskell-basement 0.0.16-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,044 kB
  • sloc: haskell: 11,336; ansic: 63; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{-# Language CPP #-}
-- |
-- Module      : Basement.Compat.C.Types
-- License     : BSD-style
-- Maintainer  : Foundation
--
-- Literal support for Integral and Fractional
-- {-# LANGUAGE TypeSynonymInstances #-}
-- {-# LANGUAGE FlexibleInstances #-}
module Basement.Compat.C.Types
    ( CChar(..), CSChar(..), CUChar(..)
    , CShort(..), CUShort(..), CInt(..), CUInt(..), CLong(..), CULong(..)
    , CPtrdiff(..), CSize(..), CWchar(..), CSigAtomic(..), CLLong(..), CULLong(..)
#if MIN_VERSION_base(4,10,0)
    , CBool(..)
#endif
    , CIntPtr(..), CUIntPtr(..), CIntMax(..), CUIntMax(..)
    , CClock(..), CTime(..), CUSeconds(..), CSUSeconds(..), CFloat(..), CDouble
    , COff(..), CMode(..)
    ) where

import Foreign.C.Types
import System.Posix.Types