diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-01-26 05:58:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-01-26 05:58:53 +0000 |
commit | 5c25d60244d3a4b458ba55d4f1e50386edb26507 (patch) | |
tree | 6c2beaeecb0df307027b2621e83f6e85da2a5642 /src/backend/lib | |
parent | b866d2e2d79416f8497e4dffa7e800298d018f6c (diff) | |
download | postgresql-5c25d60244d3a4b458ba55d4f1e50386edb26507.tar.gz postgresql-5c25d60244d3a4b458ba55d4f1e50386edb26507.zip |
Add:
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
to all files copyright Regents of Berkeley. Man, that's a lot of files.
Diffstat (limited to 'src/backend/lib')
-rw-r--r-- | src/backend/lib/bit.c | 5 | ||||
-rw-r--r-- | src/backend/lib/dllist.c | 5 | ||||
-rw-r--r-- | src/backend/lib/fstack.c | 5 | ||||
-rw-r--r-- | src/backend/lib/hasht.c | 5 | ||||
-rw-r--r-- | src/backend/lib/lispsort.c | 5 | ||||
-rw-r--r-- | src/backend/lib/stringinfo.c | 5 |
6 files changed, 18 insertions, 12 deletions
diff --git a/src/backend/lib/bit.c b/src/backend/lib/bit.c index 46742b14e80..dbfa89e7ccd 100644 --- a/src/backend/lib/bit.c +++ b/src/backend/lib/bit.c @@ -3,11 +3,12 @@ * bit.c * Standard bit array code. * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.8 1999/07/15 23:03:10 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.9 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/lib/dllist.c b/src/backend/lib/dllist.c index a149eac75d7..41663b40c1d 100644 --- a/src/backend/lib/dllist.c +++ b/src/backend/lib/dllist.c @@ -5,11 +5,12 @@ * replaces the old simplelists stuff * the elements of the lists are void* * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.15 1999/07/15 23:03:11 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.16 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/lib/fstack.c b/src/backend/lib/fstack.c index a26ce752118..9552909bc01 100644 --- a/src/backend/lib/fstack.c +++ b/src/backend/lib/fstack.c @@ -3,11 +3,12 @@ * fstack.c * Fixed format stack definitions. * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.13 1999/07/16 04:58:55 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.14 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/lib/hasht.c b/src/backend/lib/hasht.c index 51547d8a0cd..ad3aa660e27 100644 --- a/src/backend/lib/hasht.c +++ b/src/backend/lib/hasht.c @@ -4,11 +4,12 @@ * hash table related functions that are not directly supported * by the hashing packages under utils/hash. * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.11 1999/07/16 04:58:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.12 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/lib/lispsort.c b/src/backend/lib/lispsort.c index d928c33a685..b4d00737fb6 100644 --- a/src/backend/lib/lispsort.c +++ b/src/backend/lib/lispsort.c @@ -2,11 +2,12 @@ * * lispsort.c * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.12 1999/07/15 23:03:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.13 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/lib/stringinfo.c b/src/backend/lib/stringinfo.c index 63852b4cd6b..9bfa42554ae 100644 --- a/src/backend/lib/stringinfo.c +++ b/src/backend/lib/stringinfo.c @@ -6,9 +6,10 @@ * It can be used to buffer either ordinary C strings (null-terminated text) * or arbitrary binary data. All storage is allocated with palloc(). * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.c,v 1.23 1999/11/01 05:10:32 tgl Exp $ + * $Id: stringinfo.c,v 1.24 2000/01/26 05:56:26 momjian Exp $ * *------------------------------------------------------------------------- */ |