diff options
author | Rob Landley | 2005-09-11 01:05:30 +0000 |
---|---|---|
committer | Rob Landley | 2005-09-11 01:05:30 +0000 |
commit | b7128c6236ac9b4d5d69ad95d509498f38df0dd6 (patch) | |
tree | 0358a910b954c6c7fdcaddf389693a0c2e96ef70 /coreutils/install.c | |
parent | db289b258de53bdcea7d671f854aafbb490321df (diff) | |
download | busybox-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.zip busybox-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.tar.gz |
Cleanup patch by Bernhard Fischer, removing unnecessary includes of
getopt.h, whitespace changes, typos, etc.
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index e22dda6..74e1d9a 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -23,10 +23,10 @@ #include <sys/stat.h> #include <sys/types.h> #include <errno.h> -#include <getopt.h> #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <getopt.h> /* struct option */ #include "busybox.h" #include "libcoreutils/coreutils.h" |