Skip to content
Snippets Groups Projects
Commit c4b1e8cd authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-01-25 12:01:21 by simonm]

Avoid a couple of C compiler warnings.
parent 08041244
No related branches found
No related tags found
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Trace.c,v 1.2 1998/12/02 13:29:16 simonm Exp $
* $Id: Trace.c,v 1.3 1999/01/25 12:01:21 simonm Exp $
*
* User-overridable RTS hooks.
*
......@@ -8,7 +8,7 @@
#include "Rts.h"
void
PreTraceHook (long fd)
PreTraceHook (long fd UNUSED)
{
/* Default is not to print anything, however this might be useful:
*
......@@ -18,7 +18,7 @@ PreTraceHook (long fd)
}
void
PostTraceHook (long fd)
PostTraceHook (long fd UNUSED)
{
/* Default is not to print anything, however this might be useful:
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment