67b7ea39c868b32b151afce70514716448df4b92
[ghc-hetmet.git] / ghc / runtime / hooks / TraceHooks.lc
1 \begin{code}
2 #include "rtsdefs.h"
3
4 void
5 PreTraceHook (FILE *where)
6 {
7     fprintf(where, "Trace On:\n");
8 }
9
10 void
11 PostTraceHook (FILE *where)
12 {
13     fprintf(where, "\nTrace Off.\n");
14 }
15 \end{code}