diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2007-09-05 01:02:17 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2007-09-05 01:02:17 +0000 |
commit | decf06a77b1331d3af9304e55164bb0a51c15a7f (patch) | |
tree | 34dd37ce44e947eae0384148e5cd265837771463 /rts/StgMiscClosures.cmm | |
parent | bb7c2f853c3dd4004cd738b18e8d63ce6301aa61 (diff) | |
download | haskell-decf06a77b1331d3af9304e55164bb0a51c15a7f.tar.gz |
FIX: Correct Leave/EnterCriticalSection imports
Diffstat (limited to 'rts/StgMiscClosures.cmm')
-rw-r--r-- | rts/StgMiscClosures.cmm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/StgMiscClosures.cmm b/rts/StgMiscClosures.cmm index afd302aeff..88490b8c75 100644 --- a/rts/StgMiscClosures.cmm +++ b/rts/StgMiscClosures.cmm @@ -14,8 +14,8 @@ #ifdef __PIC__ import pthread_mutex_lock; -import EnterCriticalSection -import LeaveCriticalSection +import EnterCriticalSection; +import LeaveCriticalSection; import base_GHCziBase_Czh_static_info; import base_GHCziBase_Izh_static_info; #endif |