File: Foreign.hs

package info (click to toggle)
haskell-foundation 0.0.30-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 928 kB
  • sloc: haskell: 9,124; ansic: 570; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 493 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
-- |
-- Module      : Foundation.Foreign
-- License     : BSD-style
-- Maintainer  : Vincent Hanquez <vincent@snarc.org>
-- Stability   : experimental
-- Portability : portable
--
module Foundation.Foreign
    ( module Basement.FinalPtr
    , V.foreignMem
    , V.mutableForeignMem
    , module Basement.Compat.C.Types
    ) where

import           Basement.FinalPtr
import qualified Basement.UArray as V
import qualified Basement.UArray.Mutable as V

import           Basement.Compat.C.Types