diff options
author | David Terei <davidterei@gmail.com> | 2011-10-25 20:43:23 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-10-25 21:40:50 -0700 |
commit | 378dd2968d07b3780a2944bf91e3228671b51868 (patch) | |
tree | 1ee340dc24967b112afb7d7bf2a065d3b2753238 /libraries/base/GHC/Fingerprint.hs | |
parent | c9dceb6d3b3ac855d97db8957dcf181658eaf7ae (diff) | |
download | haskell-378dd2968d07b3780a2944bf91e3228671b51868.tar.gz |
Update base for latest Safe Haskell.
Diffstat (limited to 'libraries/base/GHC/Fingerprint.hs')
-rw-r--r-- | libraries/base/GHC/Fingerprint.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libraries/base/GHC/Fingerprint.hs b/libraries/base/GHC/Fingerprint.hs index 1a05e52dff..d1b3831ccd 100644 --- a/libraries/base/GHC/Fingerprint.hs +++ b/libraries/base/GHC/Fingerprint.hs @@ -1,9 +1,10 @@ -{-# LANGUAGE Unsafe #-} +{-# LANGUAGE Trustworthy #-} {-# LANGUAGE NoImplicitPrelude , BangPatterns , ForeignFunctionInterface , EmptyDataDecls #-} + -- ---------------------------------------------------------------------------- -- -- (c) The University of Glasgow 2006 @@ -74,3 +75,4 @@ foreign import ccall unsafe "MD5Update" c_MD5Update :: Ptr MD5Context -> Ptr Word8 -> CInt -> IO () foreign import ccall unsafe "MD5Final" c_MD5Final :: Ptr Word8 -> Ptr MD5Context -> IO () + |