From 11b80ecf43b2c8bd1d376859e52ed6e61781b70c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 19 Aug 2005 21:40:17 +0000 Subject: [PATCH] Make a few functions static to avoid nameclash with xslt filter --- recctrl/alvis.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/recctrl/alvis.c b/recctrl/alvis.c index 57e2ad2..d2a7aba 100644 --- a/recctrl/alvis.c +++ b/recctrl/alvis.c @@ -1,4 +1,4 @@ -/* $Id: alvis.c,v 1.4 2005-08-19 14:06:31 marc Exp $ +/* $Id: alvis.c,v 1.5 2005-08-19 21:40:17 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -93,25 +93,23 @@ static void set_param_int(const char **params, const char *name, params[2] = 0; } - -int zebra_xmlInputMatchCallback (char const *filename) +static int zebra_xmlInputMatchCallback (char const *filename) { /* yaz_log(YLOG_LOG, "match %s", filename); */ return 0; } - -void * zebra_xmlInputOpenCallback (char const *filename) +static void * zebra_xmlInputOpenCallback (char const *filename) { return 0; } -int zebra_xmlInputReadCallback (void * context, char * buffer, int len) +static int zebra_xmlInputReadCallback (void * context, char * buffer, int len) { return 0; } -int zebra_xmlInputCloseCallback (void * context) +static int zebra_xmlInputCloseCallback (void * context) { return 0; } -- 1.7.10.4