aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
Diffstat (limited to 'procps')
-rw-r--r--procps/ps.c3
-rw-r--r--procps/uptime.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/procps/ps.c b/procps/ps.c
index fc58a9bb7..b49b7ddd4 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -133,9 +133,6 @@ extern int ps_main(int argc, char **argv)
133 133
134 134
135 135
136 if (argc > 1 && strcmp(argv[1], dash_dash_help) == 0)
137 usage(ps_usage);
138
139 dir = opendir("/proc"); 136 dir = opendir("/proc");
140 if (!dir) 137 if (!dir)
141 fatalError("Can't open /proc\n"); 138 fatalError("Can't open /proc\n");
diff --git a/procps/uptime.c b/procps/uptime.c
index 6a8bfa638..efdbccf00 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -46,9 +46,6 @@ extern int uptime_main(int argc, char **argv)
46 struct tm *current_time; 46 struct tm *current_time;
47 time_t current_secs; 47 time_t current_secs;
48 48
49 if (argc > 1 && strcmp(argv[1], "--help") == 0)
50 usage(uptime_usage);
51
52 time(&current_secs); 49 time(&current_secs);
53 current_time = localtime(&current_secs); 50 current_time = localtime(&current_secs);
54 51