diff options
Diffstat (limited to 'lib/libc/gen/times.c')
-rw-r--r-- | lib/libc/gen/times.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libc/gen/times.c b/lib/libc/gen/times.c index d811b553b990..b609faedc7a1 100644 --- a/lib/libc/gen/times.c +++ b/lib/libc/gen/times.c @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__SCCSID("@(#)times.c 8.1 (Berkeley) 6/4/93"); -__FBSDID("$FreeBSD$"); - #include <sys/param.h> #include <sys/time.h> #include <sys/times.h> @@ -45,8 +41,7 @@ __FBSDID("$FreeBSD$"); #define CONVTCK(r) (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK)) clock_t -times(tp) - struct tms *tp; +times(struct tms *tp) { struct rusage ru; struct timespec t; |