diff options
Diffstat (limited to 'usr.sbin/rtadvd/timer.c')
-rw-r--r-- | usr.sbin/rtadvd/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rtadvd/timer.c b/usr.sbin/rtadvd/timer.c index fcad4ab..c8528c6 100644 --- a/usr.sbin/rtadvd/timer.c +++ b/usr.sbin/rtadvd/timer.c @@ -48,7 +48,7 @@ static struct rtadvd_timer timer_head; static struct timeval tm_max = {0x7fffffff, 0x7fffffff}; void -rtadvd_timer_init() +rtadvd_timer_init(void) { memset(&timer_head, 0, sizeof(timer_head)); @@ -119,7 +119,7 @@ rtadvd_set_timer(struct timeval *tm, struct rtadvd_timer *timer) * Return the next interval for select() call. */ struct timeval * -rtadvd_check_timer() +rtadvd_check_timer(void) { static struct timeval returnval; struct timeval now; |