diff options
author | Eric Andersen | 2001-03-09 21:28:09 +0000 |
---|---|---|
committer | Eric Andersen | 2001-03-09 21:28:09 +0000 |
commit | 8d4c397d9d551a9a91f0855e1ca48a5ed4130e7d (patch) | |
tree | f9d8162943723e8ca80ec4ef76bdaa7284ebaf11 | |
parent | 3e6ff9017f5aa4ea41de2520a3f6d29fb20e0332 (diff) | |
download | busybox-8d4c397d9d551a9a91f0855e1ca48a5ed4130e7d.zip busybox-8d4c397d9d551a9a91f0855e1ca48a5ed4130e7d.tar.gz |
Patch from Jeff Garzik marking a few 'getopt not needed' apps.
-rw-r--r-- | coreutils/whoami.c | 2 | ||||
-rw-r--r-- | coreutils/yes.c | 2 | ||||
-rw-r--r-- | findutils/which.c | 1 | ||||
-rw-r--r-- | miscutils/watchdog.c | 2 | ||||
-rw-r--r-- | true_false.c | 2 | ||||
-rw-r--r-- | watchdog.c | 2 | ||||
-rw-r--r-- | which.c | 1 | ||||
-rw-r--r-- | whoami.c | 2 | ||||
-rw-r--r-- | yes.c | 2 |
9 files changed, 16 insertions, 0 deletions
diff --git a/coreutils/whoami.c b/coreutils/whoami.c index 0bbb54b..c3b1140 100644 --- a/coreutils/whoami.c +++ b/coreutils/whoami.c @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <stdlib.h> #include <unistd.h> diff --git a/coreutils/yes.c b/coreutils/yes.c index ad7b98f..7d9596d 100644 --- a/coreutils/yes.c +++ b/coreutils/yes.c @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <stdlib.h> #include "busybox.h" diff --git a/findutils/which.c b/findutils/which.c index f9d51f2..1d75244 100644 --- a/findutils/which.c +++ b/findutils/which.c @@ -21,6 +21,7 @@ * */ +/* getopt not needed */ #include <string.h> #include <stdio.h> #include <stdlib.h> diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 5b5fd69..f0b0ebd 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <fcntl.h> #include <unistd.h> diff --git a/true_false.c b/true_false.c index 47d3bb1..7618343 100644 --- a/true_false.c +++ b/true_false.c @@ -22,6 +22,8 @@ * */ +/* getopt not needed */ + #include <stdlib.h> #include "busybox.h" @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <fcntl.h> #include <unistd.h> @@ -21,6 +21,7 @@ * */ +/* getopt not needed */ #include <string.h> #include <stdio.h> #include <stdlib.h> @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <stdlib.h> #include <unistd.h> @@ -20,6 +20,8 @@ * */ +/* getopt not needed */ + #include <stdio.h> #include <stdlib.h> #include "busybox.h" |