summaryrefslogtreecommitdiff
path: root/lib/Numeric/GSL/Special/Dawson.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/GSL/Special/Dawson.hs')
-rw-r--r--lib/Numeric/GSL/Special/Dawson.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Numeric/GSL/Special/Dawson.hs b/lib/Numeric/GSL/Special/Dawson.hs
index 37cc68e..0bddbaf 100644
--- a/lib/Numeric/GSL/Special/Dawson.hs
+++ b/lib/Numeric/GSL/Special/Dawson.hs
@@ -20,9 +20,11 @@ module Numeric.GSL.Special.Dawson(
20import Foreign(Ptr) 20import Foreign(Ptr)
21import Foreign.C.Types(CInt) 21import Foreign.C.Types(CInt)
22import Numeric.GSL.Special.Internal 22import Numeric.GSL.Special.Internal
23
23dawson_e :: Double -> (Double,Double) 24dawson_e :: Double -> (Double,Double)
24dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x 25dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x
25foreign import ccall "gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr () -> IO CInt 26foreign import ccall "gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr () -> IO CInt
27
26dawson :: Double -> Double 28dawson :: Double -> Double
27dawson = gsl_sf_dawson 29dawson = gsl_sf_dawson
28foreign import ccall "gsl_sf_dawson" gsl_sf_dawson :: Double -> Double 30foreign import ccall "gsl_sf_dawson" gsl_sf_dawson :: Double -> Double