diff options
author | Andrew Dunstan | 2008-05-17 01:28:26 +0000 |
---|---|---|
committer | Andrew Dunstan | 2008-05-17 01:28:26 +0000 |
commit | 6bee2308d1bbd81be4a25a88cd4d329d3a7dabce (patch) | |
tree | 84e81ba32ff2fc8d439b486b5212bd109b7b0d0a | |
parent | e50156e12cffdcebfc948ac7d3c3396e1dc9e3d1 (diff) |
Add $PostgreSQL$ markers to a lot of files that were missing them.
This particular batch was just for *.c and *.h file.
The changes were made with the following 2 commands:
find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *'
find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */'
99 files changed, 321 insertions, 24 deletions
diff --git a/contrib/btree_gist/btree_bit.c b/contrib/btree_gist/btree_bit.c index d86034fd6f..2c16463e00 100644 --- a/contrib/btree_gist/btree_bit.c +++ b/contrib/btree_gist/btree_bit.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_bytea.c b/contrib/btree_gist/btree_bytea.c index 02229653f4..145a1d2d53 100644 --- a/contrib/btree_gist/btree_bytea.c +++ b/contrib/btree_gist/btree_bytea.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_cash.c b/contrib/btree_gist/btree_cash.c index 17edd02309..da88878876 100644 --- a/contrib/btree_gist/btree_cash.c +++ b/contrib/btree_gist/btree_cash.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/cash.h" diff --git a/contrib/btree_gist/btree_date.c b/contrib/btree_gist/btree_date.c index 212ee2d397..bbfded17ed 100644 --- a/contrib/btree_gist/btree_date.c +++ b/contrib/btree_gist/btree_date.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/date.h" diff --git a/contrib/btree_gist/btree_float4.c b/contrib/btree_gist/btree_float4.c index 1aab392b80..f58c9b6c2e 100644 --- a/contrib/btree_gist/btree_float4.c +++ b/contrib/btree_gist/btree_float4.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_float8.c b/contrib/btree_gist/btree_float8.c index 3c804922cc..abc2879136 100644 --- a/contrib/btree_gist/btree_float8.c +++ b/contrib/btree_gist/btree_float8.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_gist.c b/contrib/btree_gist/btree_gist.c index c5c7bb88bb..0c47de6800 100644 --- a/contrib/btree_gist/btree_gist.c +++ b/contrib/btree_gist/btree_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" PG_MODULE_MAGIC; diff --git a/contrib/btree_gist/btree_gist.h b/contrib/btree_gist/btree_gist.h index 299f2d359e..17a6839a37 100644 --- a/contrib/btree_gist/btree_gist.h +++ b/contrib/btree_gist/btree_gist.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __BTREE_GIST_H__ #define __BTREE_GIST_H__ diff --git a/contrib/btree_gist/btree_inet.c b/contrib/btree_gist/btree_inet.c index b54e1c112f..396c21321d 100644 --- a/contrib/btree_gist/btree_inet.c +++ b/contrib/btree_gist/btree_inet.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_int2.c b/contrib/btree_gist/btree_int2.c index b129130c2c..5a6fcaf5f9 100644 --- a/contrib/btree_gist/btree_int2.c +++ b/contrib/btree_gist/btree_int2.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int4.c b/contrib/btree_gist/btree_int4.c index c07c9a1e2c..58cc225cae 100644 --- a/contrib/btree_gist/btree_int4.c +++ b/contrib/btree_gist/btree_int4.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int8.c b/contrib/btree_gist/btree_int8.c index 3466e1c115..c37940e126 100644 --- a/contrib/btree_gist/btree_int8.c +++ b/contrib/btree_gist/btree_int8.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_interval.c b/contrib/btree_gist/btree_interval.c index 232ba20531..5cad10f790 100644 --- a/contrib/btree_gist/btree_interval.c +++ b/contrib/btree_gist/btree_interval.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/timestamp.h" diff --git a/contrib/btree_gist/btree_macaddr.c b/contrib/btree_gist/btree_macaddr.c index 5bdc9eb3bd..d3da94b916 100644 --- a/contrib/btree_gist/btree_macaddr.c +++ b/contrib/btree_gist/btree_macaddr.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_numeric.c b/contrib/btree_gist/btree_numeric.c index a1fcf602c0..9ea096edcb 100644 --- a/contrib/btree_gist/btree_numeric.c +++ b/contrib/btree_gist/btree_numeric.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include <math.h> diff --git a/contrib/btree_gist/btree_oid.c b/contrib/btree_gist/btree_oid.c index 119035cad6..7132a11a2b 100644 --- a/contrib/btree_gist/btree_oid.c +++ b/contrib/btree_gist/btree_oid.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_text.c b/contrib/btree_gist/btree_text.c index 7951d055d3..4966dd35f3 100644 --- a/contrib/btree_gist/btree_text.c +++ b/contrib/btree_gist/btree_text.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_time.c b/contrib/btree_gist/btree_time.c index 0d2c2cf10e..68bef53256 100644 --- a/contrib/btree_gist/btree_time.c +++ b/contrib/btree_gist/btree_time.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/date.h" diff --git a/contrib/btree_gist/btree_ts.c b/contrib/btree_gist/btree_ts.c index 32451244b5..04d9e184af 100644 --- a/contrib/btree_gist/btree_ts.c +++ b/contrib/btree_gist/btree_ts.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/datetime.h" diff --git a/contrib/btree_gist/btree_utils_num.c b/contrib/btree_gist/btree_utils_num.c index 5e227196b6..dfa92e37ec 100644 --- a/contrib/btree_gist/btree_utils_num.c +++ b/contrib/btree_gist/btree_utils_num.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/cash.h" diff --git a/contrib/btree_gist/btree_utils_num.h b/contrib/btree_gist/btree_utils_num.h index dcaa94bbee..372518af6e 100644 --- a/contrib/btree_gist/btree_utils_num.h +++ b/contrib/btree_gist/btree_utils_num.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __BTREE_UTILS_NUM_H__ #define __BTREE_UTILS_NUM_H__ diff --git a/contrib/btree_gist/btree_utils_var.c b/contrib/btree_gist/btree_utils_var.c index 1ad5c0d99b..e4058e8e8d 100644 --- a/contrib/btree_gist/btree_utils_var.c +++ b/contrib/btree_gist/btree_utils_var.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "btree_gist.h" #include <math.h> diff --git a/contrib/btree_gist/btree_utils_var.h b/contrib/btree_gist/btree_utils_var.h index 0c723e91ac..9fc1bccfaf 100644 --- a/contrib/btree_gist/btree_utils_var.h +++ b/contrib/btree_gist/btree_utils_var.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __BTREE_UTILS_VAR_H__ #define __BTREE_UTILS_VAR_H__ diff --git a/contrib/hstore/crc32.c b/contrib/hstore/crc32.c index 5f4f7a3178..1c031fdfbd 100644 --- a/contrib/hstore/crc32.c +++ b/contrib/hstore/crc32.c @@ -1,4 +1,7 @@ -/* Both POSIX and CRC32 checksums */ +/* + * $PostgreSQL:$ + * + * Both POSIX and CRC32 checksums */ #include <sys/types.h> #include <stdio.h> diff --git a/contrib/hstore/crc32.h b/contrib/hstore/crc32.h index 97254a4a90..d8c5325e57 100644 --- a/contrib/hstore/crc32.h +++ b/contrib/hstore/crc32.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef _CRC32_H #define _CRC32_H diff --git a/contrib/intarray/_int.h b/contrib/intarray/_int.h index 6a9bccb525..e84bf03e48 100644 --- a/contrib/intarray/_int.h +++ b/contrib/intarray/_int.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef ___INT_H__ #define ___INT_H__ diff --git a/contrib/intarray/_int_bool.c b/contrib/intarray/_int_bool.c index a9fc66c1ff..092709aa3e 100644 --- a/contrib/intarray/_int_bool.c +++ b/contrib/intarray/_int_bool.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "utils/builtins.h" diff --git a/contrib/intarray/_int_gin.c b/contrib/intarray/_int_gin.c index d895990318..1fba4cb9d3 100644 --- a/contrib/intarray/_int_gin.c +++ b/contrib/intarray/_int_gin.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/intarray/_int_gist.c b/contrib/intarray/_int_gist.c index 8f8f79a824..91a49a39b3 100644 --- a/contrib/intarray/_int_gist.c +++ b/contrib/intarray/_int_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/intarray/_int_op.c b/contrib/intarray/_int_op.c index dd3b028929..dd9c74ae61 100644 --- a/contrib/intarray/_int_op.c +++ b/contrib/intarray/_int_op.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "lib/stringinfo.h" diff --git a/contrib/intarray/_int_tool.c b/contrib/intarray/_int_tool.c index 82ab490784..9351028b1f 100644 --- a/contrib/intarray/_int_tool.c +++ b/contrib/intarray/_int_tool.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "catalog/pg_type.h" diff --git a/contrib/intarray/_intbig_gist.c b/contrib/intarray/_intbig_gist.c index fe83860cfa..3d42cdce29 100644 --- a/contrib/intarray/_intbig_gist.c +++ b/contrib/intarray/_intbig_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/ltree/_ltree_gist.c b/contrib/ltree/_ltree_gist.c index f1fa0fbaf4..6ebc3b5b1a 100644 --- a/contrib/ltree/_ltree_gist.c +++ b/contrib/ltree/_ltree_gist.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * GiST support for ltree[] * Teodor Sigaev <[email protected]> */ diff --git a/contrib/ltree/_ltree_op.c b/contrib/ltree/_ltree_op.c index 4a648ee03e..316f20b48e 100644 --- a/contrib/ltree/_ltree_op.c +++ b/contrib/ltree/_ltree_op.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * op function for ltree[] * Teodor Sigaev <[email protected]> */ diff --git a/contrib/pageinspect/btreefuncs.c b/contrib/pageinspect/btreefuncs.c index 3fbfb9c12b..794704af59 100644 --- a/contrib/pageinspect/btreefuncs.c +++ b/contrib/pageinspect/btreefuncs.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * btreefuncs.c * * Copyright (c) 2006 Satoshi Nagayasu <[email protected]> diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 9879348cc1..b19032170f 100644 --- a/contrib/pg_standby/pg_standby.c +++ b/contrib/pg_standby/pg_standby.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * pg_standby.c * * Production-ready example of how to create a Warm Standby diff --git a/contrib/pg_trgm/trgm.h b/contrib/pg_trgm/trgm.h index 5a8d2e362a..a46f7fb04c 100644 --- a/contrib/pg_trgm/trgm.h +++ b/contrib/pg_trgm/trgm.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __TRGM_H__ #define __TRGM_H__ diff --git a/contrib/pg_trgm/trgm_gin.c b/contrib/pg_trgm/trgm_gin.c index 9a36afa074..0e2403b665 100644 --- a/contrib/pg_trgm/trgm_gin.c +++ b/contrib/pg_trgm/trgm_gin.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "trgm.h" #include "access/gin.h" diff --git a/contrib/pg_trgm/trgm_gist.c b/contrib/pg_trgm/trgm_gist.c index 9cf88dc45b..fc07ac8d75 100644 --- a/contrib/pg_trgm/trgm_gist.c +++ b/contrib/pg_trgm/trgm_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "trgm.h" #include "access/gist.h" diff --git a/contrib/pg_trgm/trgm_op.c b/contrib/pg_trgm/trgm_op.c index 6b0e28d5d2..8d6794f3c8 100644 --- a/contrib/pg_trgm/trgm_op.c +++ b/contrib/pg_trgm/trgm_op.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "trgm.h" #include <ctype.h> #include "utils/array.h" diff --git a/contrib/pgcrypto/rijndael.h b/contrib/pgcrypto/rijndael.h index aab1f51375..47fd2f4bbc 100644 --- a/contrib/pgcrypto/rijndael.h +++ b/contrib/pgcrypto/rijndael.h @@ -1,4 +1,7 @@ -/* $OpenBSD$ */ +/* + * $PostgreSQL:$ + * + * $OpenBSD$ */ /* This is an independent implementation of the encryption algorithm: */ /* */ diff --git a/contrib/pgstattuple/pgstatindex.c b/contrib/pgstattuple/pgstatindex.c index 7b95a070b4..2793b2aaa0 100644 --- a/contrib/pgstattuple/pgstatindex.c +++ b/contrib/pgstattuple/pgstatindex.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * pgstatindex * * Copyright (c) 2006 Satoshi Nagayasu <[email protected]> diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index cb0ce4f5ca..abfa8c4308 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -1,4 +1,7 @@ -/****************************************************************************** +/* + * $PostgreSQL:$ + * + ****************************************************************************** This file contains routines that can be bound to a Postgres backend and called by the backend in the process of processing queries. The calling format for these routines is dictated by Postgres architecture. diff --git a/contrib/seg/segdata.h b/contrib/seg/segdata.h index 420df739c5..cd02a6072a 100644 --- a/contrib/seg/segdata.h +++ b/contrib/seg/segdata.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ typedef struct SEG { float4 lower; diff --git a/contrib/spi/autoinc.c b/contrib/spi/autoinc.c index 6ca09230a6..cd34a9ac24 100644 --- a/contrib/spi/autoinc.c +++ b/contrib/spi/autoinc.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "executor/spi.h" /* this is what you need to work with SPI */ #include "commands/trigger.h" /* -"- and triggers */ diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index d88975d5e9..b30687a15b 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * refint.c -- set of functions to define referential integrity * constraints using general triggers. */ diff --git a/contrib/spi/timetravel.c b/contrib/spi/timetravel.c index 0fd5cae09b..dc900d182d 100644 --- a/contrib/spi/timetravel.c +++ b/contrib/spi/timetravel.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * timetravel.c -- function to get time travel feature * using general triggers. */ diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index 793f26ed58..5efb900635 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * tablefunc * * Sample to demonstrate C functions which return setof scalar diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index f6fbf97827..35ec008808 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * tablefunc * * Sample to demonstrate C functions which return setof scalar diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c index 98865bac7a..2cd1d93fcd 100644 --- a/contrib/xml2/xpath.c +++ b/contrib/xml2/xpath.c @@ -1,4 +1,7 @@ -/* Parser interface for DOM-based parser (libxml) rather than +/* + * $PostgreSQL:$ + * + * Parser interface for DOM-based parser (libxml) rather than stream-based SAX-type parser */ #include "postgres.h" diff --git a/contrib/xml2/xslt_proc.c b/contrib/xml2/xslt_proc.c index b2349aaace..c653c642c6 100644 --- a/contrib/xml2/xslt_proc.c +++ b/contrib/xml2/xslt_proc.c @@ -1,4 +1,7 @@ -/* XSLT processing functions (requiring libxslt) */ +/* + * $PostgreSQL:$ + * + * XSLT processing functions (requiring libxslt) */ /* John Gray, for Torchbox 2003-04-01 */ #include "postgres.h" diff --git a/src/backend/port/darwin/system.c b/src/backend/port/darwin/system.c index 4a0d9f28b3..4c9f9dd9da 100644 --- a/src/backend/port/darwin/system.c +++ b/src/backend/port/darwin/system.c @@ -1,4 +1,7 @@ -/* only needed in OS X 10.1 and possibly early 10.2 releases */ +/* + * $PostgreSQL:$ + * + * only needed in OS X 10.1 and possibly early 10.2 releases */ #include <AvailabilityMacros.h> #if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_2 || !defined(MAC_OS_X_VERSION_10_2) diff --git a/src/backend/port/dynloader/aix.c b/src/backend/port/dynloader/aix.c index 31bf9cbbf0..a0c047972d 100644 --- a/src/backend/port/dynloader/aix.c +++ b/src/backend/port/dynloader/aix.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * @(#)dlfcn.c 1.7 revision of 95/08/14 19:08:38 * This is an unpublished work copyright (c) 1992 HELIOS Software GmbH * 30159 Hannover, Germany diff --git a/src/backend/port/dynloader/sco.c b/src/backend/port/dynloader/sco.c index 10e91046bf..2c6fd99985 100644 --- a/src/backend/port/dynloader/sco.c +++ b/src/backend/port/dynloader/sco.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see sco.h */ diff --git a/src/backend/port/dynloader/solaris.c b/src/backend/port/dynloader/solaris.c index 2e92cd372c..905d4565e8 100644 --- a/src/backend/port/dynloader/solaris.c +++ b/src/backend/port/dynloader/solaris.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see solaris.h */ diff --git a/src/backend/port/dynloader/sunos4.c b/src/backend/port/dynloader/sunos4.c index 08dd9746dd..3f17a6cce7 100644 --- a/src/backend/port/dynloader/sunos4.c +++ b/src/backend/port/dynloader/sunos4.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see sunos4.h */ diff --git a/src/backend/port/dynloader/svr4.c b/src/backend/port/dynloader/svr4.c index e0f6b6b49d..c98901293b 100644 --- a/src/backend/port/dynloader/svr4.c +++ b/src/backend/port/dynloader/svr4.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see svr4.h */ diff --git a/src/backend/port/dynloader/univel.c b/src/backend/port/dynloader/univel.c index 98b6d61d30..25196d369d 100644 --- a/src/backend/port/dynloader/univel.c +++ b/src/backend/port/dynloader/univel.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see univel.h */ diff --git a/src/backend/port/dynloader/univel.h b/src/backend/port/dynloader/univel.h index d4a96d9344..af56a547fb 100644 --- a/src/backend/port/dynloader/univel.h +++ b/src/backend/port/dynloader/univel.h @@ -1,4 +1,7 @@ -/*------------------------------------------------------------------------- +/* + * $PostgreSQL:$ + * + *------------------------------------------------------------------------- * * univel.h * port-specific prototypes for Intel x86/UNIXWARE diff --git a/src/backend/port/dynloader/unixware.c b/src/backend/port/dynloader/unixware.c index 0ae1c69dee..36679a872c 100644 --- a/src/backend/port/dynloader/unixware.c +++ b/src/backend/port/dynloader/unixware.c @@ -1,4 +1,7 @@ -/* Dummy file used for nothing at this point +/* + * $PostgreSQL:$ + * + * Dummy file used for nothing at this point * * see unixware.h */ diff --git a/src/backend/port/dynloader/unixware.h b/src/backend/port/dynloader/unixware.h index 1189188199..d80a825ca9 100644 --- a/src/backend/port/dynloader/unixware.h +++ b/src/backend/port/dynloader/unixware.h @@ -1,4 +1,7 @@ -/*------------------------------------------------------------------------- +/* + * $PostgreSQL:$ + * + *------------------------------------------------------------------------- * * unixware.h * port-specific prototypes for Intel x86/UNIXWARE 7 diff --git a/src/backend/port/dynloader/win32.h b/src/backend/port/dynloader/win32.h index ea051ff1d3..437764e704 100644 --- a/src/backend/port/dynloader/win32.h +++ b/src/backend/port/dynloader/win32.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef PORT_PROTOS_H #define PORT_PROTOS_H diff --git a/src/backend/port/nextstep/port.c b/src/backend/port/nextstep/port.c index 0271a3287a..3c1c8f68ed 100644 --- a/src/backend/port/nextstep/port.c +++ b/src/backend/port/nextstep/port.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres.h" #ifndef _POSIX_SOURCE diff --git a/src/backend/utils/mb/wstrcmp.c b/src/backend/utils/mb/wstrcmp.c index 5d1aab7def..626520a10d 100644 --- a/src/backend/utils/mb/wstrcmp.c +++ b/src/backend/utils/mb/wstrcmp.c @@ -1,4 +1,7 @@ -/*- +/* + * $PostgreSQL:$ + * + *- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/src/backend/utils/mb/wstrncmp.c b/src/backend/utils/mb/wstrncmp.c index cbbc940826..68eb9dff59 100644 --- a/src/backend/utils/mb/wstrncmp.c +++ b/src/backend/utils/mb/wstrncmp.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h index 9c97f2b33e..d2d4330835 100644 --- a/src/include/commands/comment.h +++ b/src/include/commands/comment.h @@ -1,4 +1,7 @@ -/*------------------------------------------------------------------------- +/* + * $PostgreSQL:$ + * + *------------------------------------------------------------------------- * * comment.h * diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h index 07551dd8d5..6e79da4962 100644 --- a/src/include/commands/proclang.h +++ b/src/include/commands/proclang.h @@ -1,4 +1,7 @@ -/*------------------------------------------------------------------------- +/* + * $PostgreSQL:$ + * + *------------------------------------------------------------------------- * * proclang.h * prototypes for proclang.c. diff --git a/src/include/port/aix.h b/src/include/port/aix.h index 5ce3d29a11..581b9e038a 100644 --- a/src/include/port/aix.h +++ b/src/include/port/aix.h @@ -1,2 +1,5 @@ +/* + * $PostgreSQL:$ + */ #define CLASS_CONFLICT #define DISABLE_XOPEN_NLS diff --git a/src/include/port/bsdi.h b/src/include/port/bsdi.h index 8b13789179..c28d87d0fb 100644 --- a/src/include/port/bsdi.h +++ b/src/include/port/bsdi.h @@ -1 +1,4 @@ +/* + * $PostgreSQL:$ + */ diff --git a/src/include/port/sco.h b/src/include/port/sco.h index 2f05116d3e..050264c63c 100644 --- a/src/include/port/sco.h +++ b/src/include/port/sco.h @@ -1,4 +1,7 @@ -/* see src/backend/libpq/pqcomm.c */ +/* + * $PostgreSQL:$ + * + * see src/backend/libpq/pqcomm.c */ #define SCO_ACCEPT_BUG #define USE_UNIVEL_CC diff --git a/src/include/port/sunos4.h b/src/include/port/sunos4.h index 48fdbffb91..853c359d82 100644 --- a/src/include/port/sunos4.h +++ b/src/include/port/sunos4.h @@ -1,2 +1,5 @@ -/* sprintf() returns char *, not int, on SunOS 4.1.x */ +/* + * $PostgreSQL:$ + * + * sprintf() returns char *, not int, on SunOS 4.1.x */ #define SPRINTF_CHAR diff --git a/src/include/port/ultrix4.h b/src/include/port/ultrix4.h index 7df0abc34d..a45ad019c8 100644 --- a/src/include/port/ultrix4.h +++ b/src/include/port/ultrix4.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #define NOFIXADE #define NEED_STRDUP diff --git a/src/include/port/univel.h b/src/include/port/univel.h index ca054166d1..4a002e423e 100644 --- a/src/include/port/univel.h +++ b/src/include/port/univel.h @@ -1,4 +1,7 @@ -/*************************************** +/* + * $PostgreSQL:$ + * + *************************************** * Define this if you are compiling with * the native UNIXWARE C compiler. ***************************************/ diff --git a/src/include/port/unixware.h b/src/include/port/unixware.h index 6cddddac2e..35688a8b55 100644 --- a/src/include/port/unixware.h +++ b/src/include/port/unixware.h @@ -1,4 +1,7 @@ -/* see src/backend/libpq/pqcomm.c */ +/* + * $PostgreSQL:$ + * + * see src/backend/libpq/pqcomm.c */ #define SCO_ACCEPT_BUG /*************************************** diff --git a/src/include/port/win32/pwd.h b/src/include/port/win32/pwd.h index 8b13789179..c28d87d0fb 100644 --- a/src/include/port/win32/pwd.h +++ b/src/include/port/win32/pwd.h @@ -1 +1,4 @@ +/* + * $PostgreSQL:$ + */ diff --git a/src/include/port/win32/sys/wait.h b/src/include/port/win32/sys/wait.h index 8b13789179..c28d87d0fb 100644 --- a/src/include/port/win32/sys/wait.h +++ b/src/include/port/win32/sys/wait.h @@ -1 +1,4 @@ +/* + * $PostgreSQL:$ + */ diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h index 808a08643f..1637811b22 100644 --- a/src/include/utils/cash.h +++ b/src/include/utils/cash.h @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * cash.h * Written by D'Arcy J.M. Cain * diff --git a/src/interfaces/ecpg/include/sql3types.h b/src/interfaces/ecpg/include/sql3types.h index b9db452dac..290d33da3c 100644 --- a/src/interfaces/ecpg/include/sql3types.h +++ b/src/interfaces/ecpg/include/sql3types.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef _ECPG_SQL3TYPES_H #define _ECPG_SQL3TYPES_H diff --git a/src/interfaces/ecpg/include/sqlca.h b/src/interfaces/ecpg/include/sqlca.h index 52fcbf830f..1b9fe50b48 100644 --- a/src/interfaces/ecpg/include/sqlca.h +++ b/src/interfaces/ecpg/include/sqlca.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef POSTGRES_SQLCA_H #define POSTGRES_SQLCA_H diff --git a/src/interfaces/ecpg/include/sqlda.h b/src/interfaces/ecpg/include/sqlda.h index 8b13789179..c28d87d0fb 100644 --- a/src/interfaces/ecpg/include/sqlda.h +++ b/src/interfaces/ecpg/include/sqlda.h @@ -1 +1,4 @@ +/* + * $PostgreSQL:$ + */ diff --git a/src/interfaces/ecpg/include/sqltypes.h b/src/interfaces/ecpg/include/sqltypes.h index f93bd41f8e..fcf3cbe9a6 100644 --- a/src/interfaces/ecpg/include/sqltypes.h +++ b/src/interfaces/ecpg/include/sqltypes.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef ECPG_SQLTYPES_H #define ECPG_SQLTYPES_H diff --git a/src/interfaces/ecpg/pgtypeslib/timestamp.c b/src/interfaces/ecpg/pgtypeslib/timestamp.c index c86f1a53b2..e9fa5d5a62 100644 --- a/src/interfaces/ecpg/pgtypeslib/timestamp.c +++ b/src/interfaces/ecpg/pgtypeslib/timestamp.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #include "postgres_fe.h" #include <time.h> diff --git a/src/interfaces/ecpg/preproc/type.h b/src/interfaces/ecpg/preproc/type.h index 94c1e56f53..176c1f4148 100644 --- a/src/interfaces/ecpg/preproc/type.h +++ b/src/interfaces/ecpg/preproc/type.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef _ECPG_PREPROC_TYPE_H #define _ECPG_PREPROC_TYPE_H diff --git a/src/interfaces/ecpg/test/regression.h b/src/interfaces/ecpg/test/regression.h index f614938cef..c7d033c137 100644 --- a/src/interfaces/ecpg/test/regression.h +++ b/src/interfaces/ecpg/test/regression.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ exec sql define REGRESSDB1 regress1; exec sql define REGRESSDB2 connectdb; diff --git a/src/interfaces/libpq/win32.c b/src/interfaces/libpq/win32.c index 8b02076507..4d548c3479 100644 --- a/src/interfaces/libpq/win32.c +++ b/src/interfaces/libpq/win32.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * FILE * win32.c * diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h index f3c61c798f..33008c8c94 100644 --- a/src/interfaces/libpq/win32.h +++ b/src/interfaces/libpq/win32.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __win32_h_included #define __win32_h_included diff --git a/src/pl/plperl/spi_internal.c b/src/pl/plperl/spi_internal.c index 7ca771da83..faf8795e8b 100644 --- a/src/pl/plperl/spi_internal.c +++ b/src/pl/plperl/spi_internal.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * This kludge is necessary because of the conflicting * definitions of 'DEBUG' between postgres and perl. * we'll live. diff --git a/src/port/pthread-win32.h b/src/port/pthread-win32.h index 2a2867344d..71574e2a51 100644 --- a/src/port/pthread-win32.h +++ b/src/port/pthread-win32.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ #ifndef __PTHREAD_H #define __PTHREAD_H diff --git a/src/port/rand.c b/src/port/rand.c index b4631299e9..e72b2bd500 100644 --- a/src/port/rand.c +++ b/src/port/rand.c @@ -1,4 +1,7 @@ -/*------------------------------------------------------------------------- +/* + * $PostgreSQL:$ + * + *------------------------------------------------------------------------- * * rand.c * Missing rand implementations for Win32 diff --git a/src/port/strlcat.c b/src/port/strlcat.c index 8577af4219..2ad7637475 100644 --- a/src/port/strlcat.c +++ b/src/port/strlcat.c @@ -1,4 +1,7 @@ -/* $OpenBSD$ */ +/* + * $PostgreSQL:$ + * + * $OpenBSD$ */ /* * Copyright (c) 1998 Todd C. Miller <[email protected]> diff --git a/src/port/strtol.c b/src/port/strtol.c index 9f11debecb..143d68dd1e 100644 --- a/src/port/strtol.c +++ b/src/port/strtol.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1990 The Regents of the University of California. * All rights reserved. diff --git a/src/port/strtoul.c b/src/port/strtoul.c index 60c53a157e..04946a0073 100644 --- a/src/port/strtoul.c +++ b/src/port/strtoul.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * diff --git a/src/test/examples/testlibpq.c b/src/test/examples/testlibpq.c index b27c17386a..1e506d25e8 100644 --- a/src/test/examples/testlibpq.c +++ b/src/test/examples/testlibpq.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * testlibpq.c * * Test the C version of libpq, the PostgreSQL frontend library. diff --git a/src/test/examples/testlibpq2.c b/src/test/examples/testlibpq2.c index 5949c1364e..1c8689df42 100644 --- a/src/test/examples/testlibpq2.c +++ b/src/test/examples/testlibpq2.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * testlibpq2.c * Test of the asynchronous notification interface * diff --git a/src/test/examples/testlibpq3.c b/src/test/examples/testlibpq3.c index 97ed023c14..9c773d2b80 100644 --- a/src/test/examples/testlibpq3.c +++ b/src/test/examples/testlibpq3.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * testlibpq3.c * Test out-of-line parameters and binary I/O. * diff --git a/src/test/examples/testlibpq4.c b/src/test/examples/testlibpq4.c index 71b7d25f13..4b79d1d521 100644 --- a/src/test/examples/testlibpq4.c +++ b/src/test/examples/testlibpq4.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * testlibpq4.c * this test program shows to use LIBPQ to make multiple backend * connections diff --git a/src/test/locale/test-ctype.c b/src/test/locale/test-ctype.c index 684b73c9e1..7ee6d0191e 100644 --- a/src/test/locale/test-ctype.c +++ b/src/test/locale/test-ctype.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL:$ + */ /* diff --git a/src/tools/fsync/test_fsync.c b/src/tools/fsync/test_fsync.c index fd85a064b0..15f53d4cc4 100644 --- a/src/tools/fsync/test_fsync.c +++ b/src/tools/fsync/test_fsync.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL:$ + * + * * test_fsync.c * test various fsync() methods */ diff --git a/src/tutorial/complex.c b/src/tutorial/complex.c index 5b7da34612..a189039726 100644 --- a/src/tutorial/complex.c +++ b/src/tutorial/complex.c @@ -1,4 +1,7 @@ -/****************************************************************************** +/* + * $PostgreSQL:$ + * + ****************************************************************************** This file contains routines that can be bound to a Postgres backend and called by the backend in the process of processing queries. The calling format for these routines is dictated by Postgres architecture. |