Some adjustments, mostly from David McCullough <davidm@lineo.com> to
make busybox be more uClinux friendly. I also adjusted Config.h for
uClinux so it will automagically disable apps the arn't going to
work without fork() and such.
-Erik
diff --git a/kill.c b/kill.c
index 8745f63..34cbc4d 100644
--- a/kill.c
+++ b/kill.c
@@ -147,9 +147,8 @@
const struct signal_name *s = signames;
while (s->name != 0) {
- col +=
- fprintf(stderr, "%2d) %-8s", s->number,
- (s++)->name);
+ col += fprintf(stderr, "%2d) %-8s", s->number, s->name);
+ s++;
if (col > 60) {
fprintf(stderr, "\n");
col = 0;