summaryrefslogtreecommitdiff
path: root/rts/Papi.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/Papi.h
parenta998343dfabe92da17b2f60c78968eff2f444050 (diff)
downloadhaskell-51b85031ce99f1e9d4c72249d6d85672188f0fbd.tar.gz
Fix the symbol visibility pragmas
Diffstat (limited to 'rts/Papi.h')
-rw-r--r--rts/Papi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Papi.h b/rts/Papi.h
index f8acab7a4b..7e58c6fbbe 100644
--- a/rts/Papi.h
+++ b/rts/Papi.h
@@ -8,7 +8,7 @@
#ifndef PAPI_H
#define PAPI_H
-BEGIN_RTS_PRIVATE
+#include "BeginPrivate.h"
/* Check the error value of a PAPI call, reporting an error, if needed */
extern int papi_error;
@@ -31,6 +31,6 @@ void papi_stop_gc1_count(void);
void papi_thread_start_gc1_count(int event_set);
void papi_thread_stop_gc1_count(int event_set);
-END_RTS_PRIVATE
+#include "EndPrivate.h"
#endif /* PAPI_H */