Add $PostgreSQL$ markers to a lot of files that were missing them.
authorAndrew Dunstan <andrew@dunslane.net>
Sat, 17 May 2008 01:28:26 +0000 (01:28 +0000)
committerAndrew Dunstan <andrew@dunslane.net>
Sat, 17 May 2008 01:28:26 +0000 (01:28 +0000)
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:
contrib/btree_gist/btree_bit.c
contrib/btree_gist/btree_bytea.c
contrib/btree_gist/btree_cash.c
contrib/btree_gist/btree_date.c
contrib/btree_gist/btree_float4.c
contrib/btree_gist/btree_float8.c
contrib/btree_gist/btree_gist.c
contrib/btree_gist/btree_gist.h
contrib/btree_gist/btree_inet.c
contrib/btree_gist/btree_int2.c
contrib/btree_gist/btree_int4.c
contrib/btree_gist/btree_int8.c
contrib/btree_gist/btree_interval.c
contrib/btree_gist/btree_macaddr.c
contrib/btree_gist/btree_numeric.c
contrib/btree_gist/btree_oid.c
contrib/btree_gist/btree_text.c
contrib/btree_gist/btree_time.c
contrib/btree_gist/btree_ts.c
contrib/btree_gist/btree_utils_num.c
contrib/btree_gist/btree_utils_num.h
contrib/btree_gist/btree_utils_var.c
contrib/btree_gist/btree_utils_var.h
contrib/hstore/crc32.c
contrib/hstore/crc32.h
contrib/intarray/_int.h
contrib/intarray/_int_bool.c
contrib/intarray/_int_gin.c
contrib/intarray/_int_gist.c
contrib/intarray/_int_op.c
contrib/intarray/_int_tool.c
contrib/intarray/_intbig_gist.c
contrib/ltree/_ltree_gist.c
contrib/ltree/_ltree_op.c
contrib/pageinspect/btreefuncs.c
contrib/pg_standby/pg_standby.c
contrib/pg_trgm/trgm.h
contrib/pg_trgm/trgm_gin.c
contrib/pg_trgm/trgm_gist.c
contrib/pg_trgm/trgm_op.c
contrib/pgcrypto/rijndael.h
contrib/pgstattuple/pgstatindex.c
contrib/seg/seg.c
contrib/seg/segdata.h
contrib/spi/autoinc.c
contrib/spi/refint.c
contrib/spi/timetravel.c
contrib/tablefunc/tablefunc.c
contrib/tablefunc/tablefunc.h
contrib/xml2/xpath.c
contrib/xml2/xslt_proc.c
src/backend/port/darwin/system.c
src/backend/port/dynloader/aix.c
src/backend/port/dynloader/sco.c
src/backend/port/dynloader/solaris.c
src/backend/port/dynloader/sunos4.c
src/backend/port/dynloader/svr4.c
src/backend/port/dynloader/univel.c
src/backend/port/dynloader/univel.h
src/backend/port/dynloader/unixware.c
src/backend/port/dynloader/unixware.h
src/backend/port/dynloader/win32.h
src/backend/port/nextstep/port.c
src/backend/utils/mb/wstrcmp.c
src/backend/utils/mb/wstrncmp.c
src/include/commands/comment.h
src/include/commands/proclang.h
src/include/port/aix.h
src/include/port/bsdi.h
src/include/port/sco.h
src/include/port/sunos4.h
src/include/port/ultrix4.h
src/include/port/univel.h
src/include/port/unixware.h
src/include/port/win32/pwd.h
src/include/port/win32/sys/wait.h
src/include/utils/cash.h
src/interfaces/ecpg/include/sql3types.h
src/interfaces/ecpg/include/sqlca.h
src/interfaces/ecpg/include/sqlda.h
src/interfaces/ecpg/include/sqltypes.h
src/interfaces/ecpg/pgtypeslib/timestamp.c
src/interfaces/ecpg/preproc/type.h
src/interfaces/ecpg/test/regression.h
src/interfaces/libpq/win32.c
src/interfaces/libpq/win32.h
src/pl/plperl/spi_internal.c
src/port/pthread-win32.h
src/port/rand.c
src/port/strlcat.c
src/port/strtol.c
src/port/strtoul.c
src/test/examples/testlibpq.c
src/test/examples/testlibpq2.c
src/test/examples/testlibpq3.c
src/test/examples/testlibpq4.c
src/test/locale/test-ctype.c
src/tools/fsync/test_fsync.c
src/tutorial/complex.c

index d86034fd6ffc4fced5f535bd0da66fc1a540d4ee..2c16463e003c556f3b98a1432fbd72d55dfefdc0 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_var.h"
 #include "utils/builtins.h"
index 02229653f484659a7afbfccdae54aeeede3d6b4e..145a1d2d53ff412468f7c09914ad1ee1ac805097 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_var.h"
 #include "utils/builtins.h"
index 17edd023091fc9f6f5fff66b31a1a9f6378a770d..da88878876593b44d9fb2f0a7fec7b9f62118f15 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/cash.h"
index 212ee2d3972c0043eb29a3e0ea1aaaccf74f6fa4..bbfded17ed82156fb55d7941cc619fbf4f1aaa6f 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/date.h"
index 1aab392b80d306b71bbf7dda4ee59fd0218a423d..f58c9b6c2ea64da8eaf0aaef9b1cf4e68755cf6c 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index 3c804922cc1c9dd5c386a21a72d7bd00f057e2f7..abc287913679e4e2ead180086e677ca4c9b92773 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index c5c7bb88bbb4c85312d4eb7e47dc788bdae9a30e..0c47de6800ec2388e09a61b4f8b5188e526ee65a 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 
 PG_MODULE_MAGIC;
index 299f2d359e804134c6232d9e1562e2b2547ee225..17a6839a3786e766177ededb6a15c2ecef9d63b6 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __BTREE_GIST_H__
 #define __BTREE_GIST_H__
 
index b54e1c112f7f13e27ef8d8f95a9bd96979869c7a..396c21321d0aece5b20176e30111711621d01196 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/builtins.h"
index b129130c2c40cf0560e0c50c061ea087485577fd..5a6fcaf5f95955708432fe510a3d0f27aaa631d2 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index c07c9a1e2c2975274608608a470663f9e810f933..58cc225cae10cf31f3c07034bfac50292d56ce39 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index 3466e1c115610d5f110e3f243abfc234708d6c91..c37940e12603d9c676a0e0a8ac5c53f0478a97f0 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index 232ba20531fa4295563f2d3bfe6c1e8d249be89f..5cad10f79067c9f63dbba4642aed60db683687ee 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/timestamp.h"
index 5bdc9eb3bd0814feb8085edf46159fa812f478d4..d3da94b916e0f80c9b5f3cd9d5bec8a78d1fd7fa 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/builtins.h"
index a1fcf602c0eb0583c581cfa013d4f2bb7aa42ffb..9ea096edcb1f2b8bd43468909c76c2620f9f3663 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 
 #include <math.h>
index 119035cad608dbad5241687db1ee47604efaf50d..7132a11a2b65d97917ea73c945ca293c9446a665 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 
index 7951d055d3d2e1fd4810661535a91498efef8bd5..4966dd35f391a63ba17780fbcc9d97a74413a7d2 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_var.h"
 #include "utils/builtins.h"
index 0d2c2cf10ea6715c3ca156d06d4c588bc8a378ea..68bef53256b9bb2c79be7f2a5ec336fffe7ef392 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/date.h"
index 32451244b50ada0f3fbdf909235bd77697b21280..04d9e184af430a123b30c934eb4f36a372a0cd4f 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/datetime.h"
index 5e227196b6577b38eb281c3f33ba3f2dd1013947..dfa92e37ec1aa7b73ca76eb10d63498dce5d8f56 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/cash.h"
index dcaa94bbeeee4b4b092ca0dce3c2d42cbd15bea3..372518af6e392162013c606b0e7a9a6f1e0c30d5 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __BTREE_UTILS_NUM_H__
 #define __BTREE_UTILS_NUM_H__
 
index 1ad5c0d99bb32605dae31ba8d41843454519eec1..e4058e8e8d4d7ba68cc28d863b24b3ef00680a61 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "btree_gist.h"
 
 #include <math.h>
index 0c723e91ac31e92ca4e11e8147edc10de10c9cbc..9fc1bccfaf500cc888cd377865d1d8749dd5827e 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __BTREE_UTILS_VAR_H__
 #define __BTREE_UTILS_VAR_H__
 
index 5f4f7a3178c645ce615bdc353addebe7b64bf5ff..1c031fdfbdc198dc66433c7c0061f22e67f7ec08 100644 (file)
@@ -1,4 +1,7 @@
-/* Both POSIX and CRC32 checksums */
+/*
+ * $PostgreSQL:$ 
+ *
+ * Both POSIX and CRC32 checksums */
 
 #include <sys/types.h>
 #include <stdio.h>
index 97254a4a9094dd0bd5fc8f744305bd41207be97d..d8c5325e5789816e641db1e4954ca0b227726ec4 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef _CRC32_H
 #define _CRC32_H
 
index 6a9bccb525addcb6277d76b175fcaa3e49570714..e84bf03e4815b3468e2f1fa7b15e6698c02b5f48 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef ___INT_H__
 #define ___INT_H__
 
index a9fc66c1ffea3adaa077b5d01266af820d30347f..092709aa3e996daf2f455ffefd2c66f2e65f4f66 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "utils/builtins.h"
index d895990318129982426cad5242987dd7ad720eb6..1fba4cb9d3463bad8ec998a5fc1a6d049da280b4 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "access/gist.h"
index 8f8f79a8245158113e96ffd47d423a9f56b96da3..91a49a39b32c1a1f60c417e6eaca0c4487875bd5 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "access/gist.h"
index dd3b02892967f2fe72ff4908748f4ecf502afebf..dd9c74ae61f60a68f01ddf44658d9e196202c9f6 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "lib/stringinfo.h"
index 82ab490784df1fcf729936f7ee355fb66d8915f2..9351028b1f0f16bf2e8485644c42c5d91f1e6325 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "catalog/pg_type.h"
index fe83860cfae3f9f4ccba03366b4cb1361e0ea8e8..3d42cdce29bcc04ab956596431cb470fabdc76db 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #include "access/gist.h"
index f1fa0fbaf421f044a861a9b8c72403ed9f5a98c7..6ebc3b5b1a22c4fda1eb1c40204fedcf03cc060b 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * GiST support for ltree[]
  * Teodor Sigaev <teodor@stack.net>
  */
index 4a648ee03e960c159bc025b01e92a77fdc668cc3..316f20b48e282f472cbe4d553ca68cf4f76e2898 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * op function for ltree[]
  * Teodor Sigaev <teodor@stack.net>
  */
index 3fbfb9c12b82d4625bce2a84156413fe498fe133..794704af5941ad7fdc23aa5a80ad21d4b56cb76d 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * btreefuncs.c
  *
  * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp>
index 9879348cc1b4f726e0ab72b6c0acef057bf866ea..b19032170f00f8189c3d33b00ea64c0337a09c92 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * pg_standby.c
  *
  * Production-ready example of how to create a Warm Standby
index 5a8d2e362a7777a2f8a1db253934c16f0db052f2..a46f7fb04c0cc3943c5834829707bd154a92b062 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __TRGM_H__
 #define __TRGM_H__
 
index 9a36afa074a2bc3862fb523b099a6b628e0fb4bf..0e2403b665cf0a61a65b0a864c76f6a7709c3bf6 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "trgm.h"
 
 #include "access/gin.h"
index 9cf88dc45bd902ecccab50871a9dba1a284fda89..fc07ac8d75c9210382dbd61b1cbc90bc7027b74b 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "trgm.h"
 
 #include "access/gist.h"
index 6b0e28d5d2058cc84cc9c7e872db21f3e44d25c2..8d6794f3c840d0cd18d7fbf42eaad9e9fb4ee30b 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "trgm.h"
 #include <ctype.h>
 #include "utils/array.h"
index aab1f51375f425c7d70d60e7fedbc9b9ab1df2ac..47fd2f4bbc8103064456f28ba69af1f5930dfd4d 100644 (file)
@@ -1,4 +1,7 @@
-/*     $OpenBSD$ */
+/*
+ * $PostgreSQL:$ 
+ *
+ *     $OpenBSD$ */
 
 /* This is an independent implementation of the encryption algorithm:  */
 /*                                                                                                                                             */
index 7b95a070b42d94041e12f1f2990ae7446a1ce035..2793b2aaa07585824bb95addd7ec5c61367f421f 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * pgstatindex
  *
  * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp>
index cb0ce4f5cabcacb6b83fb82a451aacfda37cb34c..abfa8c43086e62ff403054089ab838a6915e1b75 100644 (file)
@@ -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.
index 420df739c51ca4417d2756bc0340b8becd466967..cd02a6072a51e6f2245ff6fb4e71822aa7d2c75f 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 typedef struct SEG
 {
        float4          lower;
index 6ca09230a60124e5c1c35ac6d10efda0c34a851a..cd34a9ac24633fe8893abeee3ad4e3dea4515333 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
 #include "executor/spi.h"              /* this is what you need to work with SPI */
 #include "commands/trigger.h"  /* -"- and triggers */
index d88975d5e9cb6a6d5b586c365e89afc443164b45..b30687a15ba9c564d0b2fa742d19d59b9f11c8e8 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * refint.c -- set of functions to define referential integrity
  *             constraints using general triggers.
  */
index 0fd5cae09bbd73eb404301da53b20ad06a50aa1f..dc900d182d284915e98d82fa5687d24634635c42 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * timetravel.c --     function to get time travel feature
  *             using general triggers.
  */
index 793f26ed583cdd60e869a1fccc1e5c2a357df2cf..5efb900635bfe6a77729b37493cbb6d332a1ab93 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * tablefunc
  *
  * Sample to demonstrate C functions which return setof scalar
index f6fbf97827f42a3919d1926b4de86d0e74ac675c..35ec00880877e304f155b4b0394adae5c4dab9e6 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * tablefunc
  *
  * Sample to demonstrate C functions which return setof scalar
index 98865bac7a6753747cf9c6194d41abac9ada4a05..2cd1d93fcd3cceebee66113ab2f13e20a2ab667a 100644 (file)
@@ -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"
index b2349aaace7ec2cb64c10a213f9812da23f71dc5..c653c642c68bd7dffb619837e28a8a0f7c8b90c1 100644 (file)
@@ -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"
index 4a0d9f28b332bcfff0c817111099be027bc045b1..4c9f9dd9da27fc738c42f96d69fd8d2737432852 100644 (file)
@@ -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)
 
index 31bf9cbbf0dcc2a0131f88669fd3c3c34a3bde3c..a0c047972dc56b4a9e5b1d7b414e2c1aa943de5c 100644 (file)
@@ -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
index 10e91046bf8151a460dc3e7335ee09e6925676e6..2c6fd99985c0a118ccd2a0457eaf9fd21a82b18c 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see sco.h
  */
index 2e92cd372c567ebd4a99a8a05b6377363fe02739..905d4565e8c63b79163ba9d61ee644459f3749b1 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see solaris.h
  */
index 08dd9746ddae02ae3cc95e96c9b67cfc3488fd2f..3f17a6cce7606c729fa9a67bc934f98e9362ce0a 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see sunos4.h
  */
index e0f6b6b49d88031ba38e484d13b14e4b6548e458..c98901293b54d7f0e42ff886e11dfbdde3470729 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see svr4.h
  */
index 98b6d61d30eba9faa0cff2ba670234c0f7187dac..25196d369d59c49031fa0f28e0205c62f1b65ebe 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see univel.h
  */
index d4a96d934477e0ce8e41cc2e132f3430962f8a6b..af56a547fb1b0a20bed77dd05c7b720b89ee3124 100644 (file)
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL:$ 
+ *
+ *-------------------------------------------------------------------------
  *
  * univel.h
  *       port-specific prototypes for Intel x86/UNIXWARE
index 0ae1c69dee1b60e7fd2c4881c96e6b6cd2ce6339..36679a872c9d38dbe12f245cb970836471826c64 100644 (file)
@@ -1,4 +1,7 @@
-/* Dummy file used for nothing at this point
+/*
+ * $PostgreSQL:$ 
+ *
+ * Dummy file used for nothing at this point
  *
  * see unixware.h
  */
index 11891881995b51d3bd1aef53207a6e708de1473a..d80a825ca98f3b4fe34dff0ddf4dedb300e8b1ee 100644 (file)
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL:$ 
+ *
+ *-------------------------------------------------------------------------
  *
  * unixware.h
  *       port-specific prototypes for Intel x86/UNIXWARE 7
index ea051ff1d359257a6705e11a25ad37696312a443..437764e704f698a3556c0a5b14b49d234a102975 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef PORT_PROTOS_H
 #define PORT_PROTOS_H
 
index 0271a3287af3833deaa9338bdffcd36b72353a7f..3c1c8f68ed7f61493b4062f08b29cc74a42f55f1 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres.h"
 
 #ifndef _POSIX_SOURCE
index 5d1aab7def32f5b15cbb84e5a029f23808c36775..626520a10d312fdc641cd75a0540e8b43ed8fab3 100644 (file)
@@ -1,4 +1,7 @@
-/*-
+/*
+ * $PostgreSQL:$ 
+ *
+ *-
  * Copyright (c) 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
  *
index cbbc940826ea3c2386796a5612957f3db4ff1ee0..68eb9dff593ac72c83176d2ecc0b3f5b8252849f 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * Copyright (c) 1989, 1993
  *     The Regents of the University of California.  All rights reserved.
  *
index 9c97f2b33e41f0dc78b3d131434d9fc561198de1..d2d4330835ac13a8f7c9b88ce94b31da49eb4b2e 100644 (file)
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL:$ 
+ *
+ *-------------------------------------------------------------------------
  *
  * comment.h
  *
index 07551dd8d56c914e4538746d8d23907546fda966..6e79da49624cd43fca5ac662b3fe5be2c03b214c 100644 (file)
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL:$ 
+ *
+ *-------------------------------------------------------------------------
  *
  * proclang.h
  *       prototypes for proclang.c.
index 5ce3d29a113b41cd19c0c1a863610e6a255c4ec2..581b9e038af6f9533d6684f9f12307d3efbe0567 100644 (file)
@@ -1,2 +1,5 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #define CLASS_CONFLICT
 #define DISABLE_XOPEN_NLS
index 8b137891791fe96927ad78e64b0aad7bded08bdc..c28d87d0fb4d0502dd303609a32c4314830193d2 100644 (file)
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
index 2f05116d3e129ee0078a742565570fdf10386d3a..050264c63c33de0599fa972983db5ea21e3b3b06 100644 (file)
@@ -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
index 48fdbffb91ccd8e8fe4db0668c61af46cef79193..853c359d827c000f3c928f1221b5cd9c398b38f9 100644 (file)
@@ -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
index 7df0abc34dca625708796dad99ce1bbd6bd5b176..a45ad019c85464bc83c35bf759814e4215ea93ad 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #define NOFIXADE
 #define NEED_STRDUP
 
index ca054166d191a3f9e8c1eb83f47efb7d2182be36..4a002e423e14e3f11db08aa091b0af10d797a60f 100644 (file)
@@ -1,4 +1,7 @@
-/***************************************
+/*
+ * $PostgreSQL:$ 
+ *
+ ***************************************
  * Define this if you are compiling with
  * the native UNIXWARE C compiler.
  ***************************************/
index 6cddddac2e03c028ddf148ad794fc737a20b2c7b..35688a8b55fd64d0cffe1401ec34e40c4f3fc6a4 100644 (file)
@@ -1,4 +1,7 @@
-/* see src/backend/libpq/pqcomm.c */
+/*
+ * $PostgreSQL:$ 
+ *
+ * see src/backend/libpq/pqcomm.c */
 #define SCO_ACCEPT_BUG
 
 /***************************************
index 8b137891791fe96927ad78e64b0aad7bded08bdc..c28d87d0fb4d0502dd303609a32c4314830193d2 100644 (file)
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
index 8b137891791fe96927ad78e64b0aad7bded08bdc..c28d87d0fb4d0502dd303609a32c4314830193d2 100644 (file)
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
index 808a08643f7e1f4b404c3d2716c3058f81bcdf2d..1637811b22d10ef1cad2973a00fc57caebf79685 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * cash.h
  * Written by D'Arcy J.M. Cain
  *
index b9db452dace41cd8636064218183237337a889b5..290d33da3cf15fd00cdc3b8c7bf700f35ec8102b 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef _ECPG_SQL3TYPES_H
 #define _ECPG_SQL3TYPES_H
 
index 52fcbf830f592f2c82957da77735417cf7a0ba62..1b9fe50b48c5205a60900bef229d305c6dfb8577 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef POSTGRES_SQLCA_H
 #define POSTGRES_SQLCA_H
 
index 8b137891791fe96927ad78e64b0aad7bded08bdc..c28d87d0fb4d0502dd303609a32c4314830193d2 100644 (file)
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
index f93bd41f8e03617decdad840d1d02af9fad586b0..fcf3cbe9a684678fe3aa3dc7fc789fd74516adf9 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef ECPG_SQLTYPES_H
 #define ECPG_SQLTYPES_H
 
index c86f1a53b2282f1e03baad0913eb3b00d15193bd..e9fa5d5a621210a42ee0ee3b57db90ae00d52b31 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #include "postgres_fe.h"
 
 #include <time.h>
index 94c1e56f532c023eaf97cd8bdcca77797a84c145..176c1f4148868b889a43c50c617d4aabad105199 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef _ECPG_PREPROC_TYPE_H
 #define _ECPG_PREPROC_TYPE_H
 
index f614938cef753f60d38ccc960723f2e514a70ecf..c7d033c137c23f5828de1c02394b0bbbe3466aef 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 exec sql define REGRESSDB1 regress1;
 exec sql define REGRESSDB2 connectdb;
 
index 8b020765073fb4bf09e899efc1a001f804fe23ac..4d548c3479162842b5beb4c11bca71877aa6b273 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  *     FILE
  *             win32.c
  *
index f3c61c798ff21c0929b6535eea79694e3aba24c2..33008c8c94592dd4f6d27acf2a7d2c958c8850f9 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __win32_h_included
 #define __win32_h_included
 
index 7ca771da837cf6c0381f7183cfc47926a5693db4..faf8795e8bda22c16b39c1f87b7162ad2185109d 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * This kludge is necessary because of the conflicting
  * definitions of 'DEBUG' between postgres and perl.
  * we'll live.
index 2a2867344df7897fbc55effea1e16bd18bc6e794..71574e2a51a339d58d770e1dc54c6d4eeb1e0bb4 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 #ifndef __PTHREAD_H
 #define __PTHREAD_H
 
index b4631299e999a699ffbe6964850951eed8540804..e72b2bd50098dedeaa05e91e03f31066df77d2a6 100644 (file)
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL:$ 
+ *
+ *-------------------------------------------------------------------------
  *
  * rand.c
  *       Missing rand implementations for Win32
index 8577af4219241134a402780354fc1457924766d1..2ad763747541dc50f2abf75bbac2f31555664ab5 100644 (file)
@@ -1,4 +1,7 @@
-/*     $OpenBSD$       */
+/*
+ * $PostgreSQL:$ 
+ *
+ *     $OpenBSD$       */
 
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
index 9f11debecbcf3a9e36d35adf4a7c69a003aeb63d..143d68dd1e349352e805128e345ef7f63a1b456f 100644 (file)
@@ -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.
index 60c53a157e70152537e2a63898efa178b2dfe0e3..04946a00734f5324acfd381bec774a50173e06b4 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * Copyright (c) 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
  *
index b27c17386aa9b95479dffef7bdf00dcf6e73c8f3..1e506d25e8c5e69506720f6a96f3d92dab22c188 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * testlibpq.c
  *
  *             Test the C version of libpq, the PostgreSQL frontend library.
index 5949c1364e411f38baed12ea49665fbd428b0f75..1c8689df426618657aa0be1bb4b4cbc02dd43b9b 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * testlibpq2.c
  *             Test of the asynchronous notification interface
  *
index 97ed023c14a50b8309baff26321eeecb00cadf69..9c773d2b8028811dc61900624807f58588b0a4eb 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * testlibpq3.c
  *             Test out-of-line parameters and binary I/O.
  *
index 71b7d25f13f753372f71e35c01330d206f6e4746..4b79d1d521a4b9ed170a1a35907c5c2b0414d631 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  * testlibpq4.c
  *             this test program shows to use LIBPQ to make multiple backend
  * connections
index 684b73c9e16407bbdbe8f2a39a7ab0774ca6e05e..7ee6d0191e65c94cfd51f1830b4cca60437e4020 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL:$ 
+ */
 
 /*
 
index fd85a064b00dc81e1ef3bb04d535022aa7f1f812..15f53d4cc424e6a63414a7f6225400bc4460fac2 100644 (file)
@@ -1,4 +1,7 @@
 /*
+ * $PostgreSQL:$ 
+ *
+ *
  *     test_fsync.c
  *             test various fsync() methods
  */
index 5b7da34612190739aa72d5ffbf3a5471138c3400..a189039726b73ffb95d9c48422aef84f10c87a22 100644 (file)
@@ -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.