summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-01-24 02:49:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-24 02:49:05 +0000
commitd6376244c2261025775e8b11a6a64d7c9e0d1612 (patch)
tree509740f4d5c07124e95db2d92f220bac00a82bd3
parentbe3c0a43e1e6b1244032726df02a3ab450a3c4be (diff)
downloadperl-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
-rw-r--r--XSUB.h9
-rw-r--r--cc_runtime.h9
-rw-r--r--dosish.h9
-rw-r--r--embed.h16
-rwxr-xr-xembed.pl81
-rw-r--r--embedvar.h17
-rw-r--r--fakesdio.h9
-rw-r--r--fakethr.h9
-rw-r--r--global.sym7
-rw-r--r--globals.c9
-rw-r--r--keywords.h9
-rwxr-xr-xkeywords.pl12
-rw-r--r--miniperlmain.c9
-rw-r--r--nostdio.h9
-rw-r--r--opcode.h16
-rwxr-xr-xopcode.pl33
-rw-r--r--opnames.h17
-rw-r--r--patchlevel.h9
-rw-r--r--perl.h1
-rw-r--r--perlapi.c17
-rw-r--r--perlapi.h17
-rw-r--r--perlio.h9
-rw-r--r--perlsdio.h9
-rw-r--r--perlsfio.h9
-rw-r--r--perlvars.h9
-rw-r--r--proto.h7
-rw-r--r--regcomp.h6
-rw-r--r--regexp.h6
-rw-r--r--scope.h9
-rw-r--r--sharedsv.h9
-rw-r--r--taint.c9
-rw-r--r--thrdvar.h9
-rw-r--r--thread.h9
-rw-r--r--universal.c9
-rw-r--r--unixish.h9
-rw-r--r--xsutils.c9
36 files changed, 403 insertions, 48 deletions
diff --git a/XSUB.h b/XSUB.h
index eef290c86d..1d73fb13d0 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -1,3 +1,12 @@
+/* XSUB.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.
+ *
+ */
+
#ifndef _INC_PERL_XSUB_H
#define _INC_PERL_XSUB_H 1
diff --git a/cc_runtime.h b/cc_runtime.h
index 799bf463d8..b1fc5b52b7 100644
--- a/cc_runtime.h
+++ b/cc_runtime.h
@@ -1,3 +1,12 @@
+/* cc_runtime.h
+ *
+ * Copyright (c) 1998-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.
+ *
+ */
+
#define DOOP(ppname) PUTBACK; PL_op = ppname(aTHX); SPAGAIN
#define CCPP(s) OP * s(pTHX)
diff --git a/dosish.h b/dosish.h
index da2285aaef..634efa7bc3 100644
--- a/dosish.h
+++ b/dosish.h
@@ -1,3 +1,12 @@
+/* dosish.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.
+ *
+ */
+
#define ABORT() abort();
#ifndef SH_PATH
diff --git a/embed.h b/embed.h
index cb7c1b3522..0cdef4106d 100644
--- a/embed.h
+++ b/embed.h
@@ -1,7 +1,15 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * embed.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.
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* (Doing namespace management portably in C is really gross.) */
diff --git a/embed.pl b/embed.pl
index 6536c83212..073cdf3ac5 100755
--- a/embed.pl
+++ b/embed.pl
@@ -169,6 +169,13 @@ sub write_global_sym {
walk_table(\&write_protos, 'proto.h', <<'EOT');
/*
+ * proto.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.
+ *
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
* This file is autogenerated from data in embed.pl. Edit that file
* and run 'make regen_headers' to effect changes.
@@ -178,6 +185,13 @@ EOT
walk_table(\&write_global_sym, 'global.sym', <<'EOT');
#
+# global.sym
+#
+# 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.
+#
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
# This file is autogenerated from data in embed.pl. Edit that file
# and run 'make regen_headers' to effect changes.
@@ -287,10 +301,18 @@ unlink 'embed.h';
open(EM, '> embed.h') or die "Can't create embed.h: $!\n";
print EM <<'END';
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * embed.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.
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* (Doing namespace management portably in C is really gross.) */
@@ -516,10 +538,19 @@ open(EM, '> embedvar.h')
or die "Can't create embedvar.h: $!\n";
print EM <<'END';
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * embedvar.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* (Doing namespace management portably in C is really gross.) */
@@ -659,10 +690,19 @@ open(CAPI, '> perlapi.c') or die "Can't create perlapi.c: $!\n";
open(CAPIH, '> perlapi.h') or die "Can't create perlapi.h: $!\n";
print CAPIH <<'EOT';
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * perlapi.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* declare accessor functions for Perl variables */
#ifndef __perlapi_h__
@@ -759,10 +799,19 @@ EOT
close CAPIH;
print CAPI <<'EOT';
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * perlapi.c
+ *
+ * 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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
#include "EXTERN.h"
#include "perl.h"
diff --git a/embedvar.h b/embedvar.h
index c6eb5fa7ae..d0fba96b4e 100644
--- a/embedvar.h
+++ b/embedvar.h
@@ -1,7 +1,16 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * embedvar.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* (Doing namespace management portably in C is really gross.) */
diff --git a/fakesdio.h b/fakesdio.h
index 479123242f..8ef89e9ca5 100644
--- a/fakesdio.h
+++ b/fakesdio.h
@@ -1,3 +1,12 @@
+/* fakestdio.h
+ *
+ * Copyright (c) 2000-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.
+ *
+ */
+
/*
* This is "source level" stdio compatibility mode.
* We try and #define stdio functions in terms of PerlIO.
diff --git a/fakethr.h b/fakethr.h
index 098fefea9e..5bbe8ac906 100644
--- a/fakethr.h
+++ b/fakethr.h
@@ -1,3 +1,12 @@
+/* fakethr.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.
+ *
+ */
+
typedef int perl_mutex;
typedef int perl_key;
diff --git a/global.sym b/global.sym
index e64508b793..f73a5005c4 100644
--- a/global.sym
+++ b/global.sym
@@ -1,4 +1,11 @@
#
+# global.sym
+#
+# 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.
+#
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
# This file is autogenerated from data in embed.pl. Edit that file
# and run 'make regen_headers' to effect changes.
diff --git a/globals.c b/globals.c
index d18c868d64..b88cb7b7c3 100644
--- a/globals.c
+++ b/globals.c
@@ -1,3 +1,12 @@
+/* globals.c
+ *
+ * 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.
+ *
+ */
+
#include "INTERN.h"
#define PERL_IN_GLOBALS_C
#include "perl.h"
diff --git a/keywords.h b/keywords.h
index e894930f7a..744330f526 100644
--- a/keywords.h
+++ b/keywords.h
@@ -1,3 +1,12 @@
+/*
+ * 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.
+ *
+ */
#define KEY_NULL 0
#define KEY___FILE__ 1
#define KEY___LINE__ 2
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;
diff --git a/miniperlmain.c b/miniperlmain.c
index f92ea3ee23..e2415d8a53 100644
--- a/miniperlmain.c
+++ b/miniperlmain.c
@@ -1,3 +1,12 @@
+/* miniperlmain.c
+ *
+ * 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.
+ *
+ */
+
/*
* "The Road goes ever on and on, down from the door where it began."
*/
diff --git a/nostdio.h b/nostdio.h
index b3b9ba061f..ed51758e65 100644
--- a/nostdio.h
+++ b/nostdio.h
@@ -1,3 +1,12 @@
+/* nostdio.h
+ *
+ * Copyright (c) 1987-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.
+ *
+ */
+
/*
* Strong denial of stdio - make all stdio calls (we can think of) errors
*/
diff --git a/opcode.h b/opcode.h
index b3da7c3651..8556e1ee31 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1,7 +1,15 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by opcode.pl from its data. Any changes made here
- will be lost!
-*/
+/*
+ * opcode.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.
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by opcode.pl from its data. Any changes made here
+ * will be lost!
+ */
#define Perl_pp_i_preinc Perl_pp_preinc
#define Perl_pp_i_predec Perl_pp_predec
diff --git a/opcode.pl b/opcode.pl
index bfafce70ab..5feca27669 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -31,10 +31,18 @@ while (<DATA>) {
$i = 0;
print <<"END";
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by opcode.pl from its data. Any changes made here
- will be lost!
-*/
+/*
+ * opcode.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.
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by opcode.pl from its data. Any changes made here
+ * will be lost!
+ */
#define Perl_pp_i_preinc Perl_pp_preinc
#define Perl_pp_i_predec Perl_pp_predec
@@ -44,10 +52,19 @@ print <<"END";
END
print ON <<"END";
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by opcode.pl from its data. Any changes made here
- will be lost!
-*/
+/*
+ * opnames.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by opcode.pl from its data. Any changes made here
+ * will be lost!
+ */
typedef enum opcode {
END
diff --git a/opnames.h b/opnames.h
index a6f576efda..437c85d519 100644
--- a/opnames.h
+++ b/opnames.h
@@ -1,7 +1,16 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by opcode.pl from its data. Any changes made here
- will be lost!
-*/
+/*
+ * opnames.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by opcode.pl from its data. Any changes made here
+ * will be lost!
+ */
typedef enum opcode {
OP_NULL, /* 0 */
diff --git a/patchlevel.h b/patchlevel.h
index 54f470e1c7..e24314090a 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -1,3 +1,12 @@
+/* patchlevel.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.
+ *
+ */
+
#ifndef __PATCHLEVEL_H_INCLUDED__
/* do not adjust the whitespace! Configure expects the numbers to be
diff --git a/perl.h b/perl.h
index 35902e0c24..4ca34df0b0 100644
--- a/perl.h
+++ b/perl.h
@@ -6,6 +6,7 @@
* License or the Artistic License, as specified in the README file.
*
*/
+
#ifndef H_PERL
#define H_PERL 1
diff --git a/perlapi.c b/perlapi.c
index 91d4f15f47..1ffdf0ff9f 100644
--- a/perlapi.c
+++ b/perlapi.c
@@ -1,7 +1,16 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * perlapi.c
+ *
+ * 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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
#include "EXTERN.h"
#include "perl.h"
diff --git a/perlapi.h b/perlapi.h
index 76eb92f2c5..3d6a89db24 100644
--- a/perlapi.h
+++ b/perlapi.h
@@ -1,7 +1,16 @@
-/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
- perlvars.h and thrdvar.h. Any changes made here will be lost!
-*/
+/*
+ * perlapi.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.
+ *
+ *
+ * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
+ * This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
+ * perlvars.h and thrdvar.h. Any changes made here will be lost!
+ */
/* declare accessor functions for Perl variables */
#ifndef __perlapi_h__
diff --git a/perlio.h b/perlio.h
index 7d1bc39181..3105b58797 100644
--- a/perlio.h
+++ b/perlio.h
@@ -1,3 +1,12 @@
+/* perlio.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.
+ *
+ */
+
#ifndef _PERLIO_H
#define _PERLIO_H
/*
diff --git a/perlsdio.h b/perlsdio.h
index d09b632228..72ae584d4e 100644
--- a/perlsdio.h
+++ b/perlsdio.h
@@ -1,3 +1,12 @@
+/* perlsdio.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.
+ *
+ */
+
#ifdef PERLIO_IS_STDIO
#ifdef NETWARE
diff --git a/perlsfio.h b/perlsfio.h
index ed7ab9726e..1b1b522ed8 100644
--- a/perlsfio.h
+++ b/perlsfio.h
@@ -1,3 +1,12 @@
+/* perlsfio.h
+ *
+ * Copyright (c) 1987-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.
+ *
+ */
+
/* The next #ifdef should be redundant if Configure behaves ... */
#ifndef FILE
#define FILE FILE
diff --git a/perlvars.h b/perlvars.h
index 606f7a5243..adcc2c097b 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -1,3 +1,12 @@
+/* perlvars.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.
+ *
+ */
+
/****************/
/* Truly global */
/****************/
diff --git a/proto.h b/proto.h
index 83d6bc9bdf..f897387a93 100644
--- a/proto.h
+++ b/proto.h
@@ -1,4 +1,11 @@
/*
+ * proto.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.
+ *
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
* This file is autogenerated from data in embed.pl. Edit that file
* and run 'make regen_headers' to effect changes.
diff --git a/regcomp.h b/regcomp.h
index 9053242fb4..bfd00dcc7b 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -1,4 +1,10 @@
/* regcomp.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.
+ *
*/
typedef OP OP_4tree; /* Will be redefined later. */
diff --git a/regexp.h b/regexp.h
index 6217aaabfb..81552baf6c 100644
--- a/regexp.h
+++ b/regexp.h
@@ -1,4 +1,10 @@
/* regexp.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.
+ *
*/
/*
diff --git a/scope.h b/scope.h
index 6efeb5ebbb..6cfe1247e0 100644
--- a/scope.h
+++ b/scope.h
@@ -1,3 +1,12 @@
+/* scope.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.
+ *
+ */
+
#define SAVEt_ITEM 0
#define SAVEt_SV 1
#define SAVEt_AV 2
diff --git a/sharedsv.h b/sharedsv.h
index f82804dba4..42f061022d 100644
--- a/sharedsv.h
+++ b/sharedsv.h
@@ -1,3 +1,12 @@
+/* sharedsv.h
+ *
+ * Copyright (c) 2001-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.
+ *
+ */
+
#ifdef USE_ITHREADS
typedef struct {
diff --git a/taint.c b/taint.c
index c25ff778ef..ac7a84122a 100644
--- a/taint.c
+++ b/taint.c
@@ -1,3 +1,12 @@
+/* taint.c
+ *
+ * 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.
+ *
+ */
+
/*
* "...we will have peace, when you and all your works have perished--and
* the works of your dark master to whom you would deliver us. You are a
diff --git a/thrdvar.h b/thrdvar.h
index b23dafcf8c..0abd69fb78 100644
--- a/thrdvar.h
+++ b/thrdvar.h
@@ -1,3 +1,12 @@
+/* thdrvar.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.
+ *
+ */
+
/*
=head1 Global Variables
*/
diff --git a/thread.h b/thread.h
index 309d388cb3..d380791540 100644
--- a/thread.h
+++ b/thread.h
@@ -1,3 +1,12 @@
+/* thread.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.
+ *
+ */
+
#if defined(USE_5005THREADS) || defined(USE_ITHREADS)
#if defined(VMS)
diff --git a/universal.c b/universal.c
index 53b9e9fb70..b2313f5cd0 100644
--- a/universal.c
+++ b/universal.c
@@ -1,3 +1,12 @@
+/* universal.c
+ *
+ * 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.
+ *
+ */
+
#include "EXTERN.h"
#define PERL_IN_UNIVERSAL_C
#include "perl.h"
diff --git a/unixish.h b/unixish.h
index 97e81b7c29..707092ccba 100644
--- a/unixish.h
+++ b/unixish.h
@@ -1,3 +1,12 @@
+/* unixish.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.
+ *
+ */
+
/*
* The following symbols are defined if your operating system supports
* functions by that name. All Unixes I know of support them, thus they
diff --git a/xsutils.c b/xsutils.c
index 8b7db4c5c8..1d7a01a717 100644
--- a/xsutils.c
+++ b/xsutils.c
@@ -1,3 +1,12 @@
+/* xsutils.c
+ *
+ * Copyright (c) 1999-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.
+ *
+ */
+
#include "EXTERN.h"
#define PERL_IN_XSUTILS_C
#include "perl.h"