aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/darwin/system.c
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2008-05-17 01:28:26 +0000
committerAndrew Dunstan <andrew@dunslane.net>2008-05-17 01:28:26 +0000
commit53972b460c6bc56178244ac53cf71e11bba6c37a (patch)
treee5ea73b8ea69f5b988aa0649519bec19d9e24cc2 /src/backend/port/darwin/system.c
parentcaede71b447971399011ef7687f4c68fe5ac9fc6 (diff)
downloadpostgresql-53972b460c6bc56178244ac53cf71e11bba6c37a.tar.gz
postgresql-53972b460c6bc56178244ac53cf71e11bba6c37a.zip
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 */'
Diffstat (limited to 'src/backend/port/darwin/system.c')
-rw-r--r--src/backend/port/darwin/system.c5
1 files changed, 4 insertions, 1 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)