summaryrefslogtreecommitdiff
path: root/server/timer.h
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@1ts.org>2009-08-09 18:42:32 +0000
committerGravatar Karl Ramm <kcr@1ts.org>2009-08-09 18:42:32 +0000
commit3bbec09537ba319a377be133ecaba1554743a07a (patch)
tree60bf1978061eb542b4df31eb421240d81b12a20c /server/timer.h
parent1bf07a2719d3a1aa24e07921d455489e1f3e435c (diff)
it is the TWENTY-FIRST CENTURY, we can STOP USING K&R
Diffstat (limited to 'server/timer.h')
-rw-r--r--server/timer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/timer.h b/server/timer.h
index 77595be..67ec93f 100644
--- a/server/timer.h
+++ b/server/timer.h
@@ -44,11 +44,11 @@ typedef struct _Timer {
void *arg;
} Timer;
-Timer *timer_set_rel __P((long, timer_proc, void *));
-Timer *timer_set_abs __P((long, timer_proc, void *));
-void timer_reset __P((Timer *));
-void timer_process __P((void));
-struct timeval *timer_timeout __P((struct timeval *tvbuf));
+Timer *timer_set_rel(long, timer_proc, void *);
+Timer *timer_set_abs(long, timer_proc, void *);
+void timer_reset(Timer *);
+void timer_process(void);
+struct timeval *timer_timeout(struct timeval *tvbuf);
#endif /* __TIMER_H */