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/dfreq~.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dfreq~.c') diff --git a/src/dfreq~.c b/src/dfreq~.c index 70b1ce5..09ebfa6 100644 --- a/src/dfreq~.c +++ b/src/dfreq~.c @@ -91,7 +91,7 @@ static void *dfreq_new(void) return (x); } -static void helper(void) +static void dfreq_tilde_helper(void) { post("\n%c dfreq~\t :: pitch-detector that counts zero-crossings", HEARTSYMBOL); post("\noutputs a frequency estimate as a stream~ that will be updated every zero-X"); @@ -106,7 +106,7 @@ void dfreq_tilde_setup(void) class_addmethod(dfreq_class, nullfn, gensym("signal"), 0); class_addmethod(dfreq_class, (t_method)dfreq_dsp, gensym("dsp"), 0); - class_addmethod(dfreq_class, (t_method)helper, gensym("help"), 0); + class_addmethod(dfreq_class, (t_method)dfreq_tilde_helper, gensym("help"), 0); class_sethelpsymbol(dfreq_class, gensym("zexy/dfreq~")); zexy_register("dfreq~"); } -- cgit v1.2.1