Bunches of fixes.  Typos, bugs, etc.
Added 'gunzip -t'.  inittab support _almost_ works (but it isn't
ready for prime time useage yet).
 -Erik
diff --git a/kill.c b/kill.c
index 0ba6d76..e72b734 100644
--- a/kill.c
+++ b/kill.c
@@ -183,7 +183,7 @@
 
 do_it_now:
 
-    while (argc >= 1) {
+    while (--argc >= 0) {
         int pid;
 	struct stat statbuf;
 	char pidpath[20]="/proc/";
@@ -198,6 +198,7 @@
             fprintf(stderr, "kill: (%d) - No such pid\n", pid);
             exit( FALSE);
 	}
+	fprintf(stderr, "sig = %d\n", sig);
         if (kill (pid, sig) != 0) {
             perror (*argv);
             exit ( FALSE);