From: Adam Dickmeiss Date: Fri, 19 Aug 2005 21:40:17 +0000 (+0000) Subject: Make a few functions static to avoid nameclash with xslt filter X-Git-Tag: before.bug.529~343 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;ds=sidebyside;h=11b80ecf43b2c8bd1d376859e52ed6e61781b70c;hp=c154b6ebab028dc512c43403864a8e4a7fc2b178;p=idzebra-moved-to-github.git Make a few functions static to avoid nameclash with xslt filter --- 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; }