From 0be9cb9aac9019c0ba8f2709e27b3534f5fcaa51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 24 Jan 2006 21:17:23 +0000 Subject: made all possible (well, most) functions "static" to not interfere with functions of the same name of other libraries svn path=/trunk/externals/zexy/; revision=4482 --- src/index.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/index.c') diff --git a/src/index.c b/src/index.c index 15d3a2b..53980d0 100644 --- a/src/index.c +++ b/src/index.c @@ -52,7 +52,7 @@ typedef struct _index } t_index; /************************************ - * helpers + * index_helpers */ @@ -320,7 +320,7 @@ static void index_free(t_index *x) } -static void helper(t_index *x) +static void index_helper(t_index *x) { post("\n%c index :: index symbols to indices", HEARTSYMBOL); post(" : look up the in the index and return it's index\n" @@ -364,7 +364,7 @@ void index_setup(void) class_addmethod(index_class, (t_method)index_compact, gensym("compact"), 0); class_addmethod(index_class, (t_method)index_dump, gensym("dump"), 0); - class_addmethod(index_class, (t_method)helper, gensym("help"), 0); + class_addmethod(index_class, (t_method)index_helper, gensym("help"), 0); class_sethelpsymbol(index_class, gensym("zexy/index")); zexy_register("index"); } -- cgit v1.2.1