diff options
Diffstat (limited to 'usr.sbin/rtadvd/timer.h')
-rw-r--r-- | usr.sbin/rtadvd/timer.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/usr.sbin/rtadvd/timer.h b/usr.sbin/rtadvd/timer.h index f667e8c268b..3e8d751f2d5 100644 --- a/usr.sbin/rtadvd/timer.h +++ b/usr.sbin/rtadvd/timer.h @@ -1,4 +1,4 @@ -/* $OpenBSD: timer.h,v 1.5 2002/02/16 21:28:09 millert Exp $ */ +/* $OpenBSD: timer.h,v 1.6 2002/02/17 19:42:39 millert Exp $ */ /* $KAME: timer.h,v 1.3 2000/05/27 11:30:43 jinmei Exp $ */ /* @@ -53,13 +53,11 @@ struct rtadvd_timer { }; void rtadvd_timer_init(void); -struct rtadvd_timer *rtadvd_add_timer __P((void (*)(void *), - void (*)(void *, struct timeval *), void *, void *)); +struct rtadvd_timer *rtadvd_add_timer(void (*)(void *), + void (*)(void *, struct timeval *), void *, void *); void rtadvd_set_timer(struct timeval *, struct rtadvd_timer *); void rtadvd_remove_timer(struct rtadvd_timer **); struct timeval * rtadvd_check_timer(void); struct timeval * rtadvd_timer_rest(struct rtadvd_timer *); -void TIMEVAL_ADD __P((struct timeval *, struct timeval *, - struct timeval *)); -void TIMEVAL_SUB __P((struct timeval *, struct timeval *, - struct timeval *)); +void TIMEVAL_ADD(struct timeval *, struct timeval *, struct timeval *); +void TIMEVAL_SUB(struct timeval *, struct timeval *, struct timeval *); |