diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-24 02:49:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-24 02:49:05 +0000 |
commit | d6376244c2261025775e8b11a6a64d7c9e0d1612 (patch) | |
tree | 509740f4d5c07124e95db2d92f220bac00a82bd3 /keywords.pl | |
parent | be3c0a43e1e6b1244032726df02a3ab450a3c4be (diff) | |
download | perl-d6376244c2261025775e8b11a6a64d7c9e0d1612.tar.gz |
Sprinkle some copyrights (use the oldest timestamp to
be found in the repository, which is most often not right,
but at least consistent)
p4raw-id: //depot/perl@14400
Diffstat (limited to 'keywords.pl')
-rwxr-xr-x | keywords.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/keywords.pl b/keywords.pl index 355b05ed05..00c067c40a 100755 --- a/keywords.pl +++ b/keywords.pl @@ -4,6 +4,18 @@ unlink "keywords.h"; open(KW, ">keywords.h") || die "Can't create keywords.h: $!\n"; select KW; +print <<EOM; +/* + * keywords.h + * + * Copyright (c) 1997-2002, Larry Wall + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ +EOM + # Read & print data. $keynum = 0; |