Message ID | 9f2a8ab063e595188df3fe0546484e5a8156318a.1731810617.git.sam@gentoo.org (mailing list archive) |
---|---|
State | Under Review |
Delegated to: | Herbert Xu |
Headers | show |
Series | bltin: fix timescmd with C23 | expand |
diff --git a/src/bltin/times.c b/src/bltin/times.c index 1166a68..252b084 100644 --- a/src/bltin/times.c +++ b/src/bltin/times.c @@ -12,7 +12,7 @@ #endif #include "system.h" -int timescmd() { +int timescmd(int argc, char *argv[]) { struct tms buf; long int clk_tck = sysconf(_SC_CLK_TCK); int mutime, mstime, mcutime, mcstime;