Centralize handling of --help.
This commit is contained in:
@@ -133,9 +133,6 @@ extern int ps_main(int argc, char **argv)
|
||||
|
||||
|
||||
|
||||
if (argc > 1 && strcmp(argv[1], dash_dash_help) == 0)
|
||||
usage(ps_usage);
|
||||
|
||||
dir = opendir("/proc");
|
||||
if (!dir)
|
||||
fatalError("Can't open /proc\n");
|
||||
|
@@ -46,9 +46,6 @@ extern int uptime_main(int argc, char **argv)
|
||||
struct tm *current_time;
|
||||
time_t current_secs;
|
||||
|
||||
if (argc > 1 && strcmp(argv[1], "--help") == 0)
|
||||
usage(uptime_usage);
|
||||
|
||||
time(¤t_secs);
|
||||
current_time = localtime(¤t_secs);
|
||||
|
||||
|
Reference in New Issue
Block a user