X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=ghc%2Fruntime%2Fhooks%2FTraceHooks.lc;h=67b7ea39c868b32b151afce70514716448df4b92;hp=a64f9cfe618ec6affa97e799e10718fe67b87d09;hb=5eb1c77c795f92ed0f4c8023847e9d4be1a4fd0d;hpb=f7ecf7234c224489be8a5e63fced903b655d92ee diff --git a/ghc/runtime/hooks/TraceHooks.lc b/ghc/runtime/hooks/TraceHooks.lc index a64f9cf..67b7ea3 100644 --- a/ghc/runtime/hooks/TraceHooks.lc +++ b/ghc/runtime/hooks/TraceHooks.lc @@ -2,15 +2,13 @@ #include "rtsdefs.h" void -PreTraceHook (where) - FILE *where; +PreTraceHook (FILE *where) { fprintf(where, "Trace On:\n"); } void -PostTraceHook (where) - FILE *where; +PostTraceHook (FILE *where) { fprintf(where, "\nTrace Off.\n"); }