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
This commit is contained in:
@@ -147,9 +147,8 @@ extern int kill_main(int argc, char **argv)
|
||||
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;
|
||||
|
Reference in New Issue
Block a user