From: simonmar Date: Wed, 8 Aug 2001 13:22:27 +0000 (+0000) Subject: [project @ 2001-08-08 13:22:27 by simonmar] X-Git-Tag: Approximately_9120_patches~1316 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=f15815415ae6ec7b7ad25e36acc7f6707a499e9c [project @ 2001-08-08 13:22:27 by simonmar] lib specifications aren't allowed any more [ merge into new test suite ] --- diff --git a/ghc/tests/ccall/should_compile/cc004.hs b/ghc/tests/ccall/should_compile/cc004.hs index c67c9da..a4051b5 100644 --- a/ghc/tests/ccall/should_compile/cc004.hs +++ b/ghc/tests/ccall/should_compile/cc004.hs @@ -11,8 +11,8 @@ import Word foreign import stdcall "m" m_stdcall :: StablePtr a -> IO (StablePtr b) foreign import ccall "m" unsafe m_ccall :: ByteArray Int -> IO Int -foreign import stdcall "Math" "sin" my_sin :: Double -> IO Double -foreign import stdcall "Math" "cos" my_cos :: Double -> IO Double +foreign import stdcall "sin" my_sin :: Double -> IO Double +foreign import stdcall "cos" my_cos :: Double -> IO Double foreign import stdcall "m1" m8 :: IO Int8 foreign import stdcall "m2" m16 :: IO Int16