Add PlowShowTime prototype when NO_RUSAGE isn't defined
While there, change function's type from (implicit) int to void.
This commit is contained in:
parent
6d99e5326e
commit
a4e65afae9
|
|
@ -2249,6 +2249,7 @@ plowYankCreate()
|
|||
}
|
||||
|
||||
#ifndef NO_RUSAGE
|
||||
void
|
||||
plowShowTime(t1, t2, nqueued, nprocessed, nmoved)
|
||||
struct rusage *t1, *t2;
|
||||
int nqueued, nprocessed, nmoved;
|
||||
|
|
|
|||
|
|
@ -280,6 +280,10 @@ extern void plowTechShow();
|
|||
extern void plowUpdateLabels();
|
||||
extern void plowYankCreate();
|
||||
|
||||
#ifndef NO_RUSAGE
|
||||
extern void plowShowTime();
|
||||
#endif
|
||||
|
||||
/* ------------------------- Debugging flags -------------------------- */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue