From c370ea89fa2f49c043f46d7df2a47c9827620436 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 27 Mar 2006 17:00:11 +0000 Subject: Turn #if 0 into a comment. --- coreutils/cmp.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'coreutils') 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) static const char fmt_eof[] = "cmp: EOF on %s\n"; static const char fmt_differ[] = "%s %s differ: char %d, line %d\n"; -#if 0 -static const char fmt_l_opt[] = "%.0s%.0s%d %o %o\n"; /* SUSv3 format */ -#else -static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; /* nicer gnu format */ -#endif +// This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%d %o %o\n" +static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; static const char opt_chars[] = "sl"; -- cgit v1.2.3