From 52bd9c4f01eb576473eee1ddf5a8ac491bfbbb45 Mon Sep 17 00:00:00 2001 From: Norikatsu Shigemura Date: Sun, 23 Mar 2003 07:24:20 +0000 Subject: Add 2bsd-diff 2.11, 2.11BSD diff utility. It can process large files with less memory. GNU Diff often can not work with files larger than 33% of datasize (from limit) due to memory exhaustion. PR: ports/50097 Submitted by: risner@stdio.com --- textproc/2bsd-diff/files/patch-diff.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 textproc/2bsd-diff/files/patch-diff.c (limited to 'textproc/2bsd-diff/files/patch-diff.c') diff --git a/textproc/2bsd-diff/files/patch-diff.c b/textproc/2bsd-diff/files/patch-diff.c new file mode 100644 index 000000000000..6be748081b3d --- /dev/null +++ b/textproc/2bsd-diff/files/patch-diff.c @@ -0,0 +1,22 @@ +--- diff.c.orig Wed Nov 13 05:31:26 1991 ++++ diff.c Wed Mar 19 01:31:23 2003 +@@ -176,9 +176,10 @@ + return (a > b ? a : b); + } + ++sig_t + done() + { +- if (tempfile) ++ if (tempfile[0]) + unlink(tempfile); + exit(status); + } +@@ -198,7 +199,6 @@ + char *p; + { + register char *q; +- char *realloc(); + + if ((q = realloc(p, (unsigned)n)) == NULL) + noroom(); -- cgit v1.2.3