diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-31 19:06:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-31 19:06:30 +0000 |
commit | 6187783ac73eba2b93a3a918268a57c4bb3eb978 (patch) | |
tree | 06b37c97b8768af51aaca3b5255a6a3ed0428ab8 /pp_ctl.c | |
parent | c4eb81271d38690def0c149c253ee8dc4015bfca (diff) | |
download | perl-6187783ac73eba2b93a3a918268a57c4bb3eb978.tar.gz |
Clarify the mergesort situation.
p4raw-id: //depot/perl@6955
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -3684,6 +3684,22 @@ typedef void SV; typedef int (*SVCOMPARE_t) (pTHXo_ SV*, SV*); #endif /* TESTHARNESS */ +/* + * 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>. + * + * 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 */ @@ -3692,6 +3708,12 @@ typedef SV * gptr; /* pointers in our lists */ ** 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 + * + */ + /* Much of this code is original source code from BSD4.4, and is * copyright (c) 1991 The Regents of the University of California. * |