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/mv.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/mv.c')
-rw-r--r-- | coreutils/mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c index 43a8e6d7d..aef1ed19a 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <dirent.h> | 31 | #include <dirent.h> |
32 | #include <errno.h> | 32 | #include <errno.h> |
33 | #include <stdlib.h> | 33 | #include <stdlib.h> |
34 | #include <getopt.h> | 34 | #include <getopt.h> /* struct option */ |
35 | #include "busybox.h" | 35 | #include "busybox.h" |
36 | #include "libcoreutils/coreutils.h" | 36 | #include "libcoreutils/coreutils.h" |
37 | 37 | ||