diff options
author | Rob Landley <rob@landley.net> | 2005-09-11 01:05:30 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-09-11 01:05:30 +0000 |
commit | b7128c6236ac9b4d5d69ad95d509498f38df0dd6 (patch) | |
tree | 0358a910b954c6c7fdcaddf389693a0c2e96ef70 /coreutils/ls.c | |
parent | db289b258de53bdcea7d671f854aafbb490321df (diff) | |
download | busybox-w32-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.tar.gz busybox-w32-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.tar.bz2 busybox-w32-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.zip |
Cleanup patch by Bernhard Fischer, removing unnecessary includes of
getopt.h, whitespace changes, typos, etc.
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index ac2557a55..4dfa9f507 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -60,7 +60,7 @@ enum { | |||
60 | #include <fcntl.h> | 60 | #include <fcntl.h> |
61 | #include <signal.h> | 61 | #include <signal.h> |
62 | #include <termios.h> | 62 | #include <termios.h> |
63 | #include <getopt.h> | 63 | #include <getopt.h> /* struct option */ |
64 | #include <sys/ioctl.h> | 64 | #include <sys/ioctl.h> |
65 | #include <sys/sysmacros.h> /* major() and minor() */ | 65 | #include <sys/sysmacros.h> /* major() and minor() */ |
66 | #include "busybox.h" | 66 | #include "busybox.h" |