diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-06-17 10:57:58 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-06-17 10:57:58 +0000 |
commit | 51b85031ce99f1e9d4c72249d6d85672188f0fbd (patch) | |
tree | 6fefe3ba6a0ee5507ce31d8a9eb884af47b0717e /rts/Stable.h | |
parent | a998343dfabe92da17b2f60c78968eff2f444050 (diff) | |
download | haskell-51b85031ce99f1e9d4c72249d6d85672188f0fbd.tar.gz |
Fix the symbol visibility pragmas
Diffstat (limited to 'rts/Stable.h')
-rw-r--r-- | rts/Stable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Stable.h b/rts/Stable.h index ebabee7ad0..d7b7f8bb1e 100644 --- a/rts/Stable.h +++ b/rts/Stable.h @@ -17,7 +17,7 @@ #include "sm/GC.h" // for evac_fn below -BEGIN_RTS_PRIVATE +#include "BeginPrivate.h" void freeStablePtr ( StgStablePtr sp ); @@ -33,6 +33,6 @@ void updateStablePtrTable ( rtsBool full ); void stablePtrPreGC ( void ); void stablePtrPostGC ( void ); -END_RTS_PRIVATE +#include "EndPrivate.h" #endif /* STABLE_H */ |