make ps accept (and ignore) all options (--help works of course).
tar now works with or without the leading "-" on the options.
 -Erik
diff --git a/procps/ps.c b/procps/ps.c
index 1b3f4fb..8d59700 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -128,8 +128,9 @@
 
 
 
-	if (argc > 1 && **(argv + 1) == '-')
+	if (argc > 1 && strcmp(argv[1], "--help") == 0) {
 		usage ("ps\n\nReport process status\n\nThis version of ps accepts no options.\n");
+	}
 
 	dir = opendir("/proc");
 	if (!dir)