summaryrefslogtreecommitdiff
path: root/testsuite/tests/rts/linker/T21556/T21556b.hs
blob: 5e66be0c3ead6876b42b774099e40ed5fbbb732c (plain)
1
2
3
4
5
6
7
{-# LANGUAGE ForeignFunctionInterface #-}

import Foreign.C.Types

foreign import ccall unsafe "hello" hello :: CInt -> IO ()

main = hello 42