summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-31 22:39:36 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-31 22:39:36 +0000
commitd7bd2736634b49c2bce24e023017746e5f315e5d (patch)
treedc6e0d287f5bb71a7f15213341b4e4dc00a1d2ec /pp_ctl.c
parent3860b6aeb5ad2b62ab1e0714ac2409a9756e577a (diff)
downloadperl-d7bd2736634b49c2bce24e023017746e5f315e5d.tar.gz
Further rewording.
p4raw-id: //depot/perl@6960
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c50
1 files changed, 8 insertions, 42 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 1e94c56b24..80adc493bc 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -3684,57 +3684,23 @@ typedef void SV;
typedef int (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
#endif /* TESTHARNESS */
+typedef char * aptr; /* pointer for arithmetic on sizes */
+typedef SV * gptr; /* pointers in our lists */
+
/*
* The original author of the mergesort implementation included here
- * is Peter M. McIlroy <pmcilroy@lucent.com>, and the integrator of
- * it to the Perl source code is John Lindermann <jpl@research.att.com>.
+ * is Peter M. McIlroy <pmcilroy@lucent.com> (see: Optimistic Merge Sort
+ * (SODA '92)), and the integrator of it to the Perl source code is
+ * John Linderman <jpl@research.att.com>.
*
* Both Peter and John agree with the inclusion of their code in here
* and with their code being distributed under the same terms as Perl.
*
- * Peter is the original copyright holder, UCB was just granted the
- * right to redistribute the code and has no rights to the original code.
- * Inclusion of the BSD copyright is just simple courtesy and no
- * indication of intellectual property. Keith Bostic <bostic@bostic.com>
- * agrees with this interpretation.
- *
- * --jhi */
-
-typedef char * aptr; /* pointer for arithmetic on sizes */
-typedef SV * gptr; /* pointers in our lists */
-
-/* Copyright notice from Peter's original sort,
-** which has been modified heavily. Good ideas are Peter's
-** bugs are jpl's
-*/
-
-/* The below advertising clause is ineffective as of July 22, 1999:
- *
- * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
+ * This code originally developed in conjunction with the BSD Computer
+ * Software Research Group and the University of California at Berkeley.
*
*/
-/* Much of this code is original source code from BSD4.4, and is
- * copyright (c) 1991 The Regents of the University of California.
- *
- * 1. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 2. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 3. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
-*/
-
-/*
- * AUTHOR: Peter McIlroy
- * 1991-1992, See: Optimistic Merge Sort (SODA '92)
-*/
-
/* Binary merge internal sort, with a few special mods
** for the special perl environment it now finds itself in.
**