ANSIfy, white-space nits.

This commit is contained in:
simonb 2006-04-15 16:47:30 +00:00
parent f9d6b7d22c
commit 21ca328ade
1 changed files with 5 additions and 6 deletions

View File

@ -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);
}