diff options
author | Rob Landley <rob@landley.net> | 2006-03-27 17:00:11 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-27 17:00:11 +0000 |
commit | c370ea89fa2f49c043f46d7df2a47c9827620436 (patch) | |
tree | a5287b6bcd3ecc5a8313baefb743a90157502580 | |
parent | 8416a2d5585719266417043640ebc4016e38fdc3 (diff) | |
download | busybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.tar.gz busybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.tar.bz2 busybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.zip |
Turn #if 0 into a comment.
-rw-r--r-- | coreutils/cmp.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/coreutils/cmp.c b/coreutils/cmp.c index d0fc662a5..6c8d27a99 100644 --- a/coreutils/cmp.c +++ b/coreutils/cmp.c | |||
@@ -52,11 +52,8 @@ static FILE *cmp_xfopen_input(const char *filename) | |||
52 | 52 | ||
53 | static const char fmt_eof[] = "cmp: EOF on %s\n"; | 53 | static const char fmt_eof[] = "cmp: EOF on %s\n"; |
54 | static const char fmt_differ[] = "%s %s differ: char %d, line %d\n"; | 54 | static const char fmt_differ[] = "%s %s differ: char %d, line %d\n"; |
55 | #if 0 | 55 | // This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%d %o %o\n" |
56 | static const char fmt_l_opt[] = "%.0s%.0s%d %o %o\n"; /* SUSv3 format */ | 56 | static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; |
57 | #else | ||
58 | static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; /* nicer gnu format */ | ||
59 | #endif | ||
60 | 57 | ||
61 | static const char opt_chars[] = "sl"; | 58 | static const char opt_chars[] = "sl"; |
62 | 59 | ||