diff options
Diffstat (limited to 'sys/arch/vax/stand/boot/autoconf.c')
-rw-r--r-- | sys/arch/vax/stand/boot/autoconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/vax/stand/boot/autoconf.c b/sys/arch/vax/stand/boot/autoconf.c index a77cd66ecdf..11f46c07a2a 100644 --- a/sys/arch/vax/stand/boot/autoconf.c +++ b/sys/arch/vax/stand/boot/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.15 2013/07/13 16:33:22 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.16 2013/08/15 13:00:48 otto Exp $ */ /* $NetBSD: autoconf.c,v 1.19 2002/06/01 15:33:22 ragge Exp $ */ /* * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden. @@ -52,7 +52,7 @@ void findcpu(void); void consinit(void); void scbinit(void); void clkstart(void); -int getsecs(void); +time_t getsecs(void); void scb_stray(void *); void scb_silent(void *); void longjmp(int *); @@ -131,7 +131,7 @@ autoconf(void) volatile int tickcnt; -int +time_t getsecs(void) { return tickcnt/100; |