summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/darwin/system.c5
-rw-r--r--src/backend/port/dynloader/aix.c3
-rw-r--r--src/backend/port/dynloader/sco.c5
-rw-r--r--src/backend/port/dynloader/solaris.c5
-rw-r--r--src/backend/port/dynloader/sunos4.c5
-rw-r--r--src/backend/port/dynloader/svr4.c5
-rw-r--r--src/backend/port/dynloader/univel.c5
-rw-r--r--src/backend/port/dynloader/univel.h5
-rw-r--r--src/backend/port/dynloader/unixware.c5
-rw-r--r--src/backend/port/dynloader/unixware.h5
-rw-r--r--src/backend/port/dynloader/win32.h3
-rw-r--r--src/backend/port/nextstep/port.c3
-rw-r--r--src/backend/utils/mb/wstrcmp.c5
-rw-r--r--src/backend/utils/mb/wstrncmp.c3
-rw-r--r--src/include/commands/comment.h5
-rw-r--r--src/include/commands/proclang.h5
-rw-r--r--src/include/port/aix.h3
-rw-r--r--src/include/port/bsdi.h3
-rw-r--r--src/include/port/sco.h5
-rw-r--r--src/include/port/sunos4.h5
-rw-r--r--src/include/port/ultrix4.h3
-rw-r--r--src/include/port/univel.h5
-rw-r--r--src/include/port/unixware.h5
-rw-r--r--src/include/port/win32/pwd.h3
-rw-r--r--src/include/port/win32/sys/wait.h3
-rw-r--r--src/include/utils/cash.h3
-rw-r--r--src/interfaces/ecpg/include/sql3types.h3
-rw-r--r--src/interfaces/ecpg/include/sqlca.h3
-rw-r--r--src/interfaces/ecpg/include/sqlda.h3
-rw-r--r--src/interfaces/ecpg/include/sqltypes.h3
-rw-r--r--src/interfaces/ecpg/pgtypeslib/timestamp.c3
-rw-r--r--src/interfaces/ecpg/preproc/type.h3
-rw-r--r--src/interfaces/ecpg/test/regression.h3
-rw-r--r--src/interfaces/libpq/win32.c3
-rw-r--r--src/interfaces/libpq/win32.h3
-rw-r--r--src/pl/plperl/spi_internal.c3
-rw-r--r--src/port/pthread-win32.h3
-rw-r--r--src/port/rand.c5
-rw-r--r--src/port/strlcat.c5
-rw-r--r--src/port/strtol.c3
-rw-r--r--src/port/strtoul.c3
-rw-r--r--src/test/examples/testlibpq.c3
-rw-r--r--src/test/examples/testlibpq2.c3
-rw-r--r--src/test/examples/testlibpq3.c3
-rw-r--r--src/test/examples/testlibpq4.c3
-rw-r--r--src/test/locale/test-ctype.c3
-rw-r--r--src/tools/fsync/test_fsync.c3
-rw-r--r--src/tutorial/complex.c5
48 files changed, 163 insertions, 19 deletions
diff --git a/src/backend/port/darwin/system.c b/src/backend/port/darwin/system.c
index d8be8070d5f..f6586505ba5 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: pgsql/src/backend/port/darwin/system.c,v 1.7 2008/05/17 01:28:22 adunstan Exp $
+ *
+ * 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 31bf9cbbf0d..ee8722b8838 100644
--- a/src/backend/port/dynloader/aix.c
+++ b/src/backend/port/dynloader/aix.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/aix.c,v 1.20 2008/05/17 01:28:23 adunstan Exp $
+ *
+ *
* @(#)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 10e91046bf8..da09a255916 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: pgsql/src/backend/port/dynloader/sco.c,v 1.2 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 2e92cd372c5..27f555e1b44 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: pgsql/src/backend/port/dynloader/solaris.c,v 1.2 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 08dd9746dda..659964cdca5 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: pgsql/src/backend/port/dynloader/sunos4.c,v 1.2 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 e0f6b6b49d8..2cafa40e55c 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: pgsql/src/backend/port/dynloader/svr4.c,v 1.2 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 98b6d61d30e..0f6cc80fe11 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: pgsql/src/backend/port/dynloader/univel.c,v 1.4 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 d4a96d93447..03a8aec1fce 100644
--- a/src/backend/port/dynloader/univel.h
+++ b/src/backend/port/dynloader/univel.h
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/univel.h,v 1.22 2008/05/17 01:28:23 adunstan Exp $
+ *
+ *-------------------------------------------------------------------------
*
* 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 0ae1c69dee1..2db3fa9367b 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: pgsql/src/backend/port/dynloader/unixware.c,v 1.2 2008/05/17 01:28:23 adunstan Exp $
+ *
+ * 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 11891881995..8f194ac8cc9 100644
--- a/src/backend/port/dynloader/unixware.h
+++ b/src/backend/port/dynloader/unixware.h
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/unixware.h,v 1.20 2008/05/17 01:28:23 adunstan Exp $
+ *
+ *-------------------------------------------------------------------------
*
* 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 ea051ff1d35..fa44b7f54e2 100644
--- a/src/backend/port/dynloader/win32.h
+++ b/src/backend/port/dynloader/win32.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/win32.h,v 1.4 2008/05/17 01:28:23 adunstan Exp $
+ */
#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 0271a3287af..abeb70546d5 100644
--- a/src/backend/port/nextstep/port.c
+++ b/src/backend/port/nextstep/port.c
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/backend/port/nextstep/port.c,v 1.11 2008/05/17 01:28:23 adunstan Exp $
+ */
#include "postgres.h"
#ifndef _POSIX_SOURCE
diff --git a/src/backend/utils/mb/wstrcmp.c b/src/backend/utils/mb/wstrcmp.c
index 5d1aab7def3..2bd55d1beee 100644
--- a/src/backend/utils/mb/wstrcmp.c
+++ b/src/backend/utils/mb/wstrcmp.c
@@ -1,4 +1,7 @@
-/*-
+/*
+ * $PostgreSQL: pgsql/src/backend/utils/mb/wstrcmp.c,v 1.9 2008/05/17 01:28:24 adunstan Exp $
+ *
+ *-
* 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 cbbc940826e..3de672c779a 100644
--- a/src/backend/utils/mb/wstrncmp.c
+++ b/src/backend/utils/mb/wstrncmp.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/backend/utils/mb/wstrncmp.c,v 1.9 2008/05/17 01:28:24 adunstan Exp $
+ *
+ *
* 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 9c97f2b33e4..4e352a4e81b 100644
--- a/src/include/commands/comment.h
+++ b/src/include/commands/comment.h
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL: pgsql/src/include/commands/comment.h,v 1.22 2008/05/17 01:28:24 adunstan Exp $
+ *
+ *-------------------------------------------------------------------------
*
* comment.h
*
diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h
index 07551dd8d56..fd975166891 100644
--- a/src/include/commands/proclang.h
+++ b/src/include/commands/proclang.h
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL: pgsql/src/include/commands/proclang.h,v 1.14 2008/05/17 01:28:24 adunstan Exp $
+ *
+ *-------------------------------------------------------------------------
*
* proclang.h
* prototypes for proclang.c.
diff --git a/src/include/port/aix.h b/src/include/port/aix.h
index 5ce3d29a113..8ee5c22b374 100644
--- a/src/include/port/aix.h
+++ b/src/include/port/aix.h
@@ -1,2 +1,5 @@
+/*
+ * $PostgreSQL: pgsql/src/include/port/aix.h,v 1.12 2008/05/17 01:28:24 adunstan Exp $
+ */
#define CLASS_CONFLICT
#define DISABLE_XOPEN_NLS
diff --git a/src/include/port/bsdi.h b/src/include/port/bsdi.h
index 8b137891791..03a269ae13f 100644
--- a/src/include/port/bsdi.h
+++ b/src/include/port/bsdi.h
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL: pgsql/src/include/port/bsdi.h,v 1.14 2008/05/17 01:28:24 adunstan Exp $
+ */
diff --git a/src/include/port/sco.h b/src/include/port/sco.h
index 2f05116d3e1..0b237e0822a 100644
--- a/src/include/port/sco.h
+++ b/src/include/port/sco.h
@@ -1,4 +1,7 @@
-/* see src/backend/libpq/pqcomm.c */
+/*
+ * $PostgreSQL: pgsql/src/include/port/sco.h,v 1.18 2008/05/17 01:28:24 adunstan Exp $
+ *
+ * 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 48fdbffb91c..9d34f9f9e64 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: pgsql/src/include/port/sunos4.h,v 1.10 2008/05/17 01:28:24 adunstan Exp $
+ *
+ * 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 7df0abc34dc..2da383fcb11 100644
--- a/src/include/port/ultrix4.h
+++ b/src/include/port/ultrix4.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/include/port/ultrix4.h,v 1.12 2008/05/17 01:28:24 adunstan Exp $
+ */
#define NOFIXADE
#define NEED_STRDUP
diff --git a/src/include/port/univel.h b/src/include/port/univel.h
index ca054166d19..10309bba46f 100644
--- a/src/include/port/univel.h
+++ b/src/include/port/univel.h
@@ -1,4 +1,7 @@
-/***************************************
+/*
+ * $PostgreSQL: pgsql/src/include/port/univel.h,v 1.24 2008/05/17 01:28:24 adunstan Exp $
+ *
+ ***************************************
* 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 6cddddac2e0..a8002a0dcbb 100644
--- a/src/include/port/unixware.h
+++ b/src/include/port/unixware.h
@@ -1,4 +1,7 @@
-/* see src/backend/libpq/pqcomm.c */
+/*
+ * $PostgreSQL: pgsql/src/include/port/unixware.h,v 1.18 2008/05/17 01:28:24 adunstan Exp $
+ *
+ * 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 8b137891791..8af52ef4900 100644
--- a/src/include/port/win32/pwd.h
+++ b/src/include/port/win32/pwd.h
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL: pgsql/src/include/port/win32/pwd.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
+ */
diff --git a/src/include/port/win32/sys/wait.h b/src/include/port/win32/sys/wait.h
index 8b137891791..20835d89ca7 100644
--- a/src/include/port/win32/sys/wait.h
+++ b/src/include/port/win32/sys/wait.h
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL: pgsql/src/include/port/win32/sys/wait.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
+ */
diff --git a/src/include/utils/cash.h b/src/include/utils/cash.h
index 808a08643f7..a195d998d5d 100644
--- a/src/include/utils/cash.h
+++ b/src/include/utils/cash.h
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/include/utils/cash.h,v 1.26 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* 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 b9db452dace..acabb731b35 100644
--- a/src/interfaces/ecpg/include/sql3types.h
+++ b/src/interfaces/ecpg/include/sql3types.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/sql3types.h,v 1.12 2008/05/17 01:28:25 adunstan Exp $
+ */
#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 52fcbf830f5..98cf0796481 100644
--- a/src/interfaces/ecpg/include/sqlca.h
+++ b/src/interfaces/ecpg/include/sqlca.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlca.h,v 1.30 2008/05/17 01:28:25 adunstan Exp $
+ */
#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 8b137891791..314b161b56f 100644
--- a/src/interfaces/ecpg/include/sqlda.h
+++ b/src/interfaces/ecpg/include/sqlda.h
@@ -1 +1,4 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlda.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
+ */
diff --git a/src/interfaces/ecpg/include/sqltypes.h b/src/interfaces/ecpg/include/sqltypes.h
index f93bd41f8e0..dc4738da858 100644
--- a/src/interfaces/ecpg/include/sqltypes.h
+++ b/src/interfaces/ecpg/include/sqltypes.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqltypes.h,v 1.8 2008/05/17 01:28:25 adunstan Exp $
+ */
#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 c86f1a53b22..74995b5ca2a 100644
--- a/src/interfaces/ecpg/pgtypeslib/timestamp.c
+++ b/src/interfaces/ecpg/pgtypeslib/timestamp.c
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/timestamp.c,v 1.42 2008/05/17 01:28:25 adunstan Exp $
+ */
#include "postgres_fe.h"
#include <time.h>
diff --git a/src/interfaces/ecpg/preproc/type.h b/src/interfaces/ecpg/preproc/type.h
index 94c1e56f532..89195077bae 100644
--- a/src/interfaces/ecpg/preproc/type.h
+++ b/src/interfaces/ecpg/preproc/type.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/type.h,v 1.49 2008/05/17 01:28:25 adunstan Exp $
+ */
#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 f614938cef7..cba295744fe 100644
--- a/src/interfaces/ecpg/test/regression.h
+++ b/src/interfaces/ecpg/test/regression.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/test/regression.h,v 1.2 2008/05/17 01:28:25 adunstan Exp $
+ */
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 8b020765073..886a5818640 100644
--- a/src/interfaces/libpq/win32.c
+++ b/src/interfaces/libpq/win32.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/interfaces/libpq/win32.c,v 1.24 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* FILE
* win32.c
*
diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h
index f3c61c798ff..b1c52688aee 100644
--- a/src/interfaces/libpq/win32.h
+++ b/src/interfaces/libpq/win32.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/interfaces/libpq/win32.h,v 1.29 2008/05/17 01:28:25 adunstan Exp $
+ */
#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 7ca771da837..7a0f76671ba 100644
--- a/src/pl/plperl/spi_internal.c
+++ b/src/pl/plperl/spi_internal.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/pl/plperl/spi_internal.c,v 1.9 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* 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 2a2867344df..1552ae37385 100644
--- a/src/port/pthread-win32.h
+++ b/src/port/pthread-win32.h
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/port/pthread-win32.h,v 1.4 2008/05/17 01:28:25 adunstan Exp $
+ */
#ifndef __PTHREAD_H
#define __PTHREAD_H
diff --git a/src/port/rand.c b/src/port/rand.c
index b4631299e99..c9a966c9ebb 100644
--- a/src/port/rand.c
+++ b/src/port/rand.c
@@ -1,4 +1,7 @@
-/*-------------------------------------------------------------------------
+/*
+ * $PostgreSQL: pgsql/src/port/rand.c,v 1.5 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *-------------------------------------------------------------------------
*
* rand.c
* Missing rand implementations for Win32
diff --git a/src/port/strlcat.c b/src/port/strlcat.c
index 67c11069e6e..9099b45c5fb 100644
--- a/src/port/strlcat.c
+++ b/src/port/strlcat.c
@@ -1,4 +1,7 @@
-/* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
+/*
+ * $PostgreSQL: pgsql/src/port/strlcat.c,v 1.3 2008/05/17 01:28:25 adunstan Exp $
+ *
+ * $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
/*
* Copyright (c) 1998 Todd C. Miller <[email protected]>
diff --git a/src/port/strtol.c b/src/port/strtol.c
index 9f11debecbc..175c53901c9 100644
--- a/src/port/strtol.c
+++ b/src/port/strtol.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/port/strtol.c,v 1.15 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* 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 60c53a157e7..8ac66186556 100644
--- a/src/port/strtoul.c
+++ b/src/port/strtoul.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/port/strtoul.c,v 1.4 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* 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 b27c17386aa..b27d4186f6d 100644
--- a/src/test/examples/testlibpq.c
+++ b/src/test/examples/testlibpq.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/test/examples/testlibpq.c,v 1.17 2008/05/17 01:28:25 adunstan Exp $
+ *
+ *
* 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 5949c1364e4..8500f50b8ef 100644
--- a/src/test/examples/testlibpq2.c
+++ b/src/test/examples/testlibpq2.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/test/examples/testlibpq2.c,v 1.14 2008/05/17 01:28:26 adunstan Exp $
+ *
+ *
* testlibpq2.c
* Test of the asynchronous notification interface
*
diff --git a/src/test/examples/testlibpq3.c b/src/test/examples/testlibpq3.c
index 97ed023c14a..0e9f9e8b510 100644
--- a/src/test/examples/testlibpq3.c
+++ b/src/test/examples/testlibpq3.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/test/examples/testlibpq3.c,v 1.15 2008/05/17 01:28:26 adunstan Exp $
+ *
+ *
* 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 71b7d25f13f..8db0ac5e06d 100644
--- a/src/test/examples/testlibpq4.c
+++ b/src/test/examples/testlibpq4.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/test/examples/testlibpq4.c,v 1.13 2008/05/17 01:28:26 adunstan Exp $
+ *
+ *
* 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 684b73c9e16..904bed32cea 100644
--- a/src/test/locale/test-ctype.c
+++ b/src/test/locale/test-ctype.c
@@ -1,3 +1,6 @@
+/*
+ * $PostgreSQL: pgsql/src/test/locale/test-ctype.c,v 1.5 2008/05/17 01:28:26 adunstan Exp $
+ */
/*
diff --git a/src/tools/fsync/test_fsync.c b/src/tools/fsync/test_fsync.c
index fd85a064b00..724d1d70013 100644
--- a/src/tools/fsync/test_fsync.c
+++ b/src/tools/fsync/test_fsync.c
@@ -1,4 +1,7 @@
/*
+ * $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.21 2008/05/17 01:28:26 adunstan Exp $
+ *
+ *
* test_fsync.c
* test various fsync() methods
*/
diff --git a/src/tutorial/complex.c b/src/tutorial/complex.c
index 5b7da346121..ab0166ba521 100644
--- a/src/tutorial/complex.c
+++ b/src/tutorial/complex.c
@@ -1,4 +1,7 @@
-/******************************************************************************
+/*
+ * $PostgreSQL: pgsql/src/tutorial/complex.c,v 1.14 2008/05/17 01:28:26 adunstan Exp $
+ *
+ ******************************************************************************
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.