Remove the Unicode alternative for ".." (#3894)
[ghc-hetmet.git] / rts / Proftimer.h
index 1379792..a3cfc8b 100644 (file)
@@ -9,17 +9,21 @@
 #ifndef PROFTIMER_H
 #define PROFTIMER_H
 
-extern void initProfTimer      ( void );
-extern void handleProfTick     ( void );
+BEGIN_RTS_PRIVATE
+
+void initProfTimer      ( void );
+void handleProfTick     ( void );
 
 #ifdef PROFILING
-extern void stopProfTimer      ( void );
-extern void startProfTimer     ( void );
+void stopProfTimer      ( void );
+void startProfTimer     ( void );
 #endif
 
-extern void stopHeapProfTimer  ( void );
-extern void startHeapProfTimer ( void );
+void stopHeapProfTimer  ( void );
+void startHeapProfTimer ( void );
 
 extern rtsBool performHeapProfile;
 
+END_RTS_PRIVATE
+
 #endif /* PROFTIMER_H */