diff options
author | panne <unknown> | 2005-05-21 15:12:00 +0000 |
---|---|---|
committer | panne <unknown> | 2005-05-21 15:12:00 +0000 |
commit | 22cf766063c99241e5f5fc2175a60fc63f7a36f3 (patch) | |
tree | f6745085ca05df70e290fa7fb313aaea722f9dd3 /ghc/compiler/utils | |
parent | 1504b0c40d63dc0b2e838deabac081bb0c2f2506 (diff) | |
download | haskell-22cf766063c99241e5f5fc2175a60fc63f7a36f3.tar.gz |
[project @ 2005-05-21 15:12:00 by panne]
Warning police: Use non-deprecated form of "foreign import"
Diffstat (limited to 'ghc/compiler/utils')
-rw-r--r-- | ghc/compiler/utils/FastString.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/utils/FastString.lhs b/ghc/compiler/utils/FastString.lhs index 6b795bea8c..661b89eaf9 100644 --- a/ghc/compiler/utils/FastString.lhs +++ b/ghc/compiler/utils/FastString.lhs @@ -443,7 +443,7 @@ cmpFS (FastString u1# l1# b1#) (FastString u2# l2# b2#) = )) #ifndef __HADDOCK__ -foreign import ccall "ghc_memcmp" unsafe +foreign import ccall unsafe "ghc_memcmp" memcmp :: ByteArray# -> ByteArray# -> Int# -> IO Int #endif |