aboutsummaryrefslogtreecommitdiff
path: root/src/dfreq~.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
commit0be9cb9aac9019c0ba8f2709e27b3534f5fcaa51 (patch)
treeba2c4c5c5886271dc309a4bc38855637546e280d /src/dfreq~.c
parentdf9fa297c6f3d9782b82d85a0e4d4bc587df3538 (diff)
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
Diffstat (limited to 'src/dfreq~.c')
-rw-r--r--src/dfreq~.c4
1 files changed, 2 insertions, 2 deletions
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~");
}