aboutsummaryrefslogtreecommitdiff
path: root/src/pdf~.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/pdf~.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/pdf~.c')
-rw-r--r--src/pdf~.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdf~.c b/src/pdf~.c
index 40a1545..be44ccc 100644
--- a/src/pdf~.c
+++ b/src/pdf~.c
@@ -112,7 +112,7 @@ static void pdf_free(t_pdf *x)
freebytes(x->buf, x->size*sizeof(t_float));
}
-static void helper(void)
+static void pdf_tilde_helper(void)
{
post("\n%c pdf~\t:: get the probability density function of a signal (-1.0 to +1.0)", HEARTSYMBOL);
post("'bang'\t : output a list of the probabilities of 'n' function values"
@@ -134,7 +134,7 @@ void pdf_tilde_setup(void)
class_addmethod(pdf_class, (t_method)clear_pdfbuf, gensym("clear"), 0);
class_addfloat(pdf_class, pdf_float);
- class_addmethod(pdf_class, (t_method)helper, gensym("help"), 0);
+ class_addmethod(pdf_class, (t_method)pdf_tilde_helper, gensym("help"), 0);
class_sethelpsymbol(pdf_class, gensym("zexy/pdf~"));
zexy_register("pdf~");
}