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/sigzero~.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sigzero~.c') diff --git a/src/sigzero~.c b/src/sigzero~.c index c0d0b40..abc8fc0 100644 --- a/src/sigzero~.c +++ b/src/sigzero~.c @@ -76,7 +76,7 @@ static void sigzero_dsp(t_sigzero *x, t_signal **sp) dsp_add(sigzero_perform, 3, sp[0]->s_vec, x, sp[0]->s_n); } -static void helper(void) +static void sigzero_tilde_helper(void) { post("\n%c sigzero~-object :: for detecting whether a signal is currently zero or not", HEARTSYMBOL); post("'bang'\t: turn the detector on\n" @@ -105,7 +105,7 @@ void sigzero_tilde_setup(void) class_addmethod(sigzero_class, nullfn, gensym("signal"), 0); class_addmethod(sigzero_class, (t_method)sigzero_dsp, gensym("dsp"), 0); - class_addmethod(sigzero_class, (t_method)helper, gensym("help"), 0); + class_addmethod(sigzero_class, (t_method)sigzero_tilde_helper, gensym("help"), 0); class_sethelpsymbol(sigzero_class, gensym("zexy/sigzero~")); zexy_register("sigzero~"); } -- cgit v1.2.1