diff options
Diffstat (limited to 'lib/libc/gen/times.c')
-rw-r--r-- | lib/libc/gen/times.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/gen/times.c b/lib/libc/gen/times.c index c145d0a..c7de17e 100644 --- a/lib/libc/gen/times.c +++ b/lib/libc/gen/times.c @@ -34,6 +34,8 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)times.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/time.h> @@ -48,7 +50,7 @@ static char sccsid[] = "@(#)times.c 8.1 (Berkeley) 6/4/93"; clock_t times(tp) - register struct tms *tp; + struct tms *tp; { struct rusage ru; struct timeval t; |