Remove vestages of a previous implimentation of "-h".

Submitted by:	Tony Finch <dot@dotat.at>
This commit is contained in:
David E. O'Brien 2000-10-31 02:26:10 +00:00
parent 58b1e45d5d
commit a07101ab73
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68029

View File

@ -150,9 +150,9 @@ main(argc, argv)
ru.ru_stime.tv_sec, ru.ru_stime.tv_usec/10000);
} else if (hflag) {
humantime(out, after.tv_sec, after.tv_usec/10000);
fprintf(out, " real%c", hflag ? '\t' : ' ');
fprintf(out, " real\t");
humantime(out, ru.ru_utime.tv_sec, ru.ru_utime.tv_usec/10000);
fprintf(out, " user%c", hflag ? '\t' : ' ');
fprintf(out, " user\t");
humantime(out, ru.ru_stime.tv_sec, ru.ru_stime.tv_usec/10000);
fprintf(out, " sys\n");
} else {