summaryrefslogtreecommitdiff
path: root/rts/StgPrimFloat.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/StgPrimFloat.h
parenta998343dfabe92da17b2f60c78968eff2f444050 (diff)
downloadhaskell-51b85031ce99f1e9d4c72249d6d85672188f0fbd.tar.gz
Fix the symbol visibility pragmas
Diffstat (limited to 'rts/StgPrimFloat.h')
-rw-r--r--rts/StgPrimFloat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/StgPrimFloat.h b/rts/StgPrimFloat.h
index 3f5b3e5013..cd5da46326 100644
--- a/rts/StgPrimFloat.h
+++ b/rts/StgPrimFloat.h
@@ -9,7 +9,7 @@
#ifndef STGPRIMFLOAT_H
#define STGPRIMFLOAT_H
-BEGIN_RTS_PRIVATE
+#include "BeginPrivate.h"
/* grimy low-level support functions defined in StgPrimFloat.c */
void __decodeDouble_2Int (I_ *man_sign, W_ *man_high, W_ *man_low, I_ *exp, StgDouble dbl);
@@ -21,6 +21,6 @@ StgFloat __word_encodeFloat (W_ j, I_ e);
// __int_encodeDouble and __int_encodeFloat are public, declared in
// includes/rts/PrimFloat.h.
-END_RTS_PRIVATE
+#include "EndPrivate.h"
#endif /* STGPRIMFLOAT_H */