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/makesymbol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/makesymbol.c') diff --git a/src/makesymbol.c b/src/makesymbol.c index e361c80..3557b57 100644 --- a/src/makesymbol.c +++ b/src/makesymbol.c @@ -118,7 +118,7 @@ static void makesymbol_free(t_makesymbol *x) } -static void helper(t_makesymbol *x) +static void makesymbol_helper(t_makesymbol *x) { post("\n%c makesymbol :: create a formatted symbol", HEARTSYMBOL); post("\t: glue up to 10 list-elements to 1 formatted symbol\n" @@ -140,7 +140,7 @@ void makesymbol_setup(void) class_addmethod(makesymbol_class, (t_method)reset_mask, gensym("sym1"), A_SYMBOL, 0); - class_addmethod(makesymbol_class, (t_method)helper, gensym("help"), 0); + class_addmethod(makesymbol_class, (t_method)makesymbol_helper, gensym("help"), 0); class_sethelpsymbol(makesymbol_class, gensym("zexy/makesymbol")); zexy_register("makesymbol"); } -- cgit v1.2.1