diff options
author | simonpj@microsoft.com <unknown> | 2010-11-12 17:05:43 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-11-12 17:05:43 +0000 |
commit | 679d2c36306d05712b1929f752117a2102639d3e (patch) | |
tree | 5c15c688966e889cae589fb741f55de73bbd49b6 /libraries/base/System/Event/Clock.hsc | |
parent | cd5e82eedc4346c86c640f89d160d65a7d08ad43 (diff) | |
download | haskell-679d2c36306d05712b1929f752117a2102639d3e.tar.gz |
Add LANGUAGE BangPatterns to modules that use bang patterns
Diffstat (limited to 'libraries/base/System/Event/Clock.hsc')
-rw-r--r-- | libraries/base/System/Event/Clock.hsc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/base/System/Event/Clock.hsc b/libraries/base/System/Event/Clock.hsc index fec00bbf3a..73d2a52798 100644 --- a/libraries/base/System/Event/Clock.hsc +++ b/libraries/base/System/Event/Clock.hsc @@ -1,3 +1,4 @@ +{-# LANGUAGE BangPatterns #-} {-# LANGUAGE ForeignFunctionInterface #-} module System.Event.Clock (getCurrentTime) where |