1{-# OPTIONS_HADDOCK hide #-}
2module Foundation.System.Bindings.PosixDef
3    ( CErrno
4    , CFd
5    , CMemProtFlags
6    , CMemMappingFlags
7    , CMemAdvice
8    , CMemSyncFlags
9    , CSysconfName
10    , COpenFlags
11    , COff(..)
12    , CMode(..)
13    ) where
14
15import Basement.Compat.C.Types
16
17type CErrno = CInt
18type CFd = CInt
19type CMemProtFlags = CInt
20type CMemMappingFlags = CInt
21type CMemAdvice = CInt
22type CMemSyncFlags = CInt
23type CSysconfName = CInt
24type COpenFlags = CInt
25