summaryrefslogtreecommitdiff
path: root/lib/GSL/Special/Internal.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GSL/Special/Internal.hs')
-rw-r--r--lib/GSL/Special/Internal.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/GSL/Special/Internal.hs b/lib/GSL/Special/Internal.hs
index ad1aaa2..8d81c72 100644
--- a/lib/GSL/Special/Internal.hs
+++ b/lib/GSL/Special/Internal.hs
@@ -20,6 +20,7 @@ module GSL.Special.Internal (
20 createSFR_E10, 20 createSFR_E10,
21 Precision(..), 21 Precision(..),
22 Gsl_mode_t, 22 Gsl_mode_t,
23 Size_t,
23 precCode 24 precCode
24) 25)
25where 26where
@@ -37,6 +38,8 @@ precCode PrecApprox = 2
37 38
38type Gsl_mode_t = Int 39type Gsl_mode_t = Int
39 40
41type Size_t = Int
42
40---------------------------------------------------------------- 43----------------------------------------------------------------
41-- | access to a sf_result 44-- | access to a sf_result
42createSFR :: Storable a => String -> (Ptr a -> IO Int) -> (a, a) 45createSFR :: Storable a => String -> (Ptr a -> IO Int) -> (a, a)