aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-27 17:00:11 +0000
committerRob Landley <rob@landley.net>2006-03-27 17:00:11 +0000
commitc370ea89fa2f49c043f46d7df2a47c9827620436 (patch)
treea5287b6bcd3ecc5a8313baefb743a90157502580
parent8416a2d5585719266417043640ebc4016e38fdc3 (diff)
downloadbusybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.tar.gz
busybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.tar.bz2
busybox-w32-c370ea89fa2f49c043f46d7df2a47c9827620436.zip
Turn #if 0 into a comment.
-rw-r--r--coreutils/cmp.c7
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
53static const char fmt_eof[] = "cmp: EOF on %s\n"; 53static const char fmt_eof[] = "cmp: EOF on %s\n";
54static const char fmt_differ[] = "%s %s differ: char %d, line %d\n"; 54static 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"
56static const char fmt_l_opt[] = "%.0s%.0s%d %o %o\n"; /* SUSv3 format */ 56static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n";
57#else
58static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; /* nicer gnu format */
59#endif
60 57
61static const char opt_chars[] = "sl"; 58static const char opt_chars[] = "sl";
62 59