summaryrefslogtreecommitdiff
path: root/server/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/timer.c')
-rw-r--r--server/timer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/timer.c b/server/timer.c
index c625e44..c671c8b 100644
--- a/server/timer.c
+++ b/server/timer.c
@@ -90,7 +90,11 @@ static void timer_botch P((void*)), insert_timer P((timer)),
timer timer_set_rel (time_rel, proc, arg)
long time_rel;
+#ifdef __STDC__
void (*proc)(void*);
+#else
+ void (*proc)();
+#endif
void *arg;
{
timer new_t;