summaryrefslogtreecommitdiff
path: root/rts/posix/Signals.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-06-17 10:57:58 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-06-17 10:57:58 +0000
commit51b85031ce99f1e9d4c72249d6d85672188f0fbd (patch)
tree6fefe3ba6a0ee5507ce31d8a9eb884af47b0717e /rts/posix/Signals.h
parenta998343dfabe92da17b2f60c78968eff2f444050 (diff)
downloadhaskell-51b85031ce99f1e9d4c72249d6d85672188f0fbd.tar.gz
Fix the symbol visibility pragmas
Diffstat (limited to 'rts/posix/Signals.h')
-rw-r--r--rts/posix/Signals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/posix/Signals.h b/rts/posix/Signals.h
index b80f711b17..7235559915 100644
--- a/rts/posix/Signals.h
+++ b/rts/posix/Signals.h
@@ -13,7 +13,7 @@
# include <signal.h>
#endif
-BEGIN_RTS_PRIVATE
+#include "BeginPrivate.h"
rtsBool anyUserHandlers(void);
@@ -28,7 +28,7 @@ Capability *ioManagerStartCap (Capability *cap);
extern StgInt *signal_handlers;
-END_RTS_PRIVATE
+#include "EndPrivate.h"
#endif /* POSIX_SIGNALS_H */