aboutsummaryrefslogtreecommitdiff
path: root/externals/vanilla/timer.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-13 02:19:54 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-13 02:19:54 +0000
commit60a6ee6cf6b7c626067769e35d88f13853414d18 (patch)
tree5866a0e2dd31b6397f180bf1798d05a5f1cd066e /externals/vanilla/timer.c
parent9a52b2ddf56513ef8a2b861916e46158e80414cc (diff)
fixed problems with setup functions
svn path=/trunk/; revision=14606
Diffstat (limited to 'externals/vanilla/timer.c')
-rw-r--r--externals/vanilla/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/vanilla/timer.c b/externals/vanilla/timer.c
index 675dafe6..3baf3a30 100644
--- a/externals/vanilla/timer.c
+++ b/externals/vanilla/timer.c
@@ -34,7 +34,7 @@ static void *timer_new(t_floatarg f)
return (x);
}
-static void timer_setup(void)
+void timer_setup(void)
{
timer_class = class_new(gensym("timer"), (t_newmethod)timer_new, 0,
sizeof(t_timer), 0, A_DEFFLOAT, 0);