summaryrefslogtreecommitdiff
path: root/testsuite/tests/ffi/should_run/ffi003.hs
blob: bc291960eccb7b75bfd42b5fe13947bd69289caf (plain)
1
2
3
4
5
6
7
8
-- !!! Test passing doubles to a ccall

import Foreign.C

foreign import ccall unsafe "math.h sin"
  c_sin :: CDouble -> IO CDouble

main = c_sin 1.0 >>= print