diff --git a/sys/arch/sbmips/stand/netboot/getsecs.c b/sys/arch/sbmips/stand/netboot/getsecs.c index e512e28b5653..02c84e8373f5 100644 --- a/sys/arch/sbmips/stand/netboot/getsecs.c +++ b/sys/arch/sbmips/stand/netboot/getsecs.c @@ -1,4 +1,4 @@ -/* $NetBSD: getsecs.c,v 1.2 2003/02/07 17:52:08 cgd Exp $ */ +/* $NetBSD: getsecs.c,v 1.3 2006/04/15 16:47:30 simonb Exp $ */ /* * Copyright 2001 @@ -45,12 +45,11 @@ #include "stand/common/cfe_api.h" time_t -getsecs() +getsecs(void) { - long long time; + long long time; - time = cfe_getticks(); + time = cfe_getticks(); - return (int) (time / 10); + return (int) (time / 10); } -