git: bf86e2c503bc - stable/13 - times: Use modern function definitions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Apr 2023 14:38:43 UTC
The branch stable/13 has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=bf86e2c503bcffb46f59a8d08eea68d96016815f commit bf86e2c503bcffb46f59a8d08eea68d96016815f Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-10-25 05:03:11 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2023-04-09 14:37:52 +0000 times: Use modern function definitions Use the modern ANSI function defition syntax rather than the old K&R syntax for times. Sponsored by: Netflix (cherry picked from commit aec9453fec70864234c70ccd0198c8b612139cf7) --- lib/libc/gen/times.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libc/gen/times.c b/lib/libc/gen/times.c index d811b553b990..985c8266a0f8 100644 --- a/lib/libc/gen/times.c +++ b/lib/libc/gen/times.c @@ -45,8 +45,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;