diff options
Diffstat (limited to 'resource/vtimes.c')
-rw-r--r-- | resource/vtimes.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/resource/vtimes.c b/resource/vtimes.c index a8816b0d3f..7d2c34bdee 100644 --- a/resource/vtimes.c +++ b/resource/vtimes.c @@ -53,9 +53,7 @@ vtimes_one (struct vtimes *vt, enum __rusage_who who) *CURRENT. If CHILD is not NULL, write statistics for all terminated child processes into *CHILD. Returns 0 for success, -1 for failure. */ int -vtimes (current, child) - struct vtimes *current; - struct vtimes *child; +vtimes (struct vtimes *current, struct vtimes *child) { if (vtimes_one (current, RUSAGE_SELF) < 0 || vtimes_one (child, RUSAGE_CHILDREN) < 0) |