diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-09 17:25:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-09 17:25:02 +0000 |
commit | f29d0b1c91c511acd031ca2c235015881ee81932 (patch) | |
tree | 5a2ae7686cf441dd343434654d6a03e7431c4e70 | |
parent | cbd260b93db3be4d27830feab636da4ee9dedaa6 (diff) | |
download | coreutils-f29d0b1c91c511acd031ca2c235015881ee81932.tar.xz |
Alphabetize includes.
Remove duplicate inclusion of "same.h".
-rw-r--r-- | src/copy.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/copy.c b/src/copy.c index d5e84f36c..624e7c68d 100644 --- a/src/copy.c +++ b/src/copy.c @@ -27,19 +27,18 @@ #endif #include "system.h" -#include "error.h" #include "backupfile.h" -#include "savedir.h" #include "copy.h" #include "cp-hash.h" -#include "hash.h" -#include "hash-pjw.h" -#include "same.h" #include "dirname.h" +#include "error.h" #include "full-write.h" +#include "hash.h" +#include "hash-pjw.h" #include "path-concat.h" #include "quote.h" #include "same.h" +#include "savedir.h" #include "utimens.h" #include "xreadlink.h" |