From c6e0d82d0b0c99a9b7dccb656ad8220ed9d05712 Mon Sep 17 00:00:00 2001 From: stasinos Date: Wed, 13 Jun 2001 17:52:33 +0000 Subject: [PATCH] fixed inconsistency between between the two declarations of TracePutchar() git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@87 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/tracer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/tracer.c b/C/tracer.c index 2870aaf24..1e7230dae 100644 --- a/C/tracer.c +++ b/C/tracer.c @@ -29,7 +29,7 @@ STATIC_PROTO(void send_tracer_message, (char *, char *, Int, char *, CELL *)); int do_low_level_trace = FALSE; static int do_trace_primitives = TRUE; - int +static int TracePutchar(int sno, int ch) { return(YP_putc(ch, YP_stderr)); /* use standard error stream, which is supposed to be 2*/