aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-04-26 14:04:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-26 14:04:29 +0200
commit920185c69ac9addf06cb47a0f2336e075d6dacb2 (patch)
treed1bc468e218ae4bef9451f2bc45fdf967f37b2eb /editors
parent0c1ba443c83553e85d39e26ae4bb126a2c58ce93 (diff)
downloadbusybox-w32-920185c69ac9addf06cb47a0f2336e075d6dacb2.tar.gz
busybox-w32-920185c69ac9addf06cb47a0f2336e075d6dacb2.tar.bz2
busybox-w32-920185c69ac9addf06cb47a0f2336e075d6dacb2.zip
cmp: remove history comment. it is more natural to keep it in source control
The comment was: * Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * Original version majorly reworked for SUSv3 compliance, bug fixes, and * size optimizations. Changes include: * 1) Now correctly distinguishes between errors and actual file differences. * 2) Proper handling of '-' args. * 3) Actual error checking of i/o. * 4) Accept SUSv3 -l option. Note that we use the slightly nicer gnu format * in the '-l' case. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors')
-rw-r--r--editors/cmp.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/editors/cmp.c b/editors/cmp.c
index e8294510a..dbfa4be35 100644
--- a/editors/cmp.c
+++ b/editors/cmp.c
@@ -10,17 +10,6 @@
10/* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ 10/* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */ 11/* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */
12 12
13/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
14 *
15 * Original version majorly reworked for SUSv3 compliance, bug fixes, and
16 * size optimizations. Changes include:
17 * 1) Now correctly distinguishes between errors and actual file differences.
18 * 2) Proper handling of '-' args.
19 * 3) Actual error checking of i/o.
20 * 4) Accept SUSv3 -l option. Note that we use the slightly nicer gnu format
21 * in the '-l' case.
22 */
23
24#include "libbb.h" 13#include "libbb.h"
25 14
26static const char fmt_eof[] ALIGN1 = "cmp: EOF on %s\n"; 15static const char fmt_eof[] ALIGN1 = "cmp: EOF on %s\n";