Remove unimplemented System V options from the getopt() option string.

This commit is contained in:
tjr 2002-12-21 00:38:14 +00:00
parent 093dfa7f7d
commit db60a5d963

View File

@ -70,7 +70,7 @@ main(int argc, char *argv[])
setlocale(LC_TIME, "");
while ((ch = getopt(argc, argv, "HTabdlmpqrstu")) != -1) {
while ((ch = getopt(argc, argv, "HTmqsu")) != -1) {
switch (ch) {
case 'H': /* Write column headings */
Hflag = 1;