Commit 53972b46 authored by Andrew Dunstan's avatar Andrew Dunstan

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 */'
parent caede71b
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_bit.c,v 1.9 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_var.h" #include "btree_utils_var.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_bytea.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_var.h" #include "btree_utils_var.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_cash.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/cash.h" #include "utils/cash.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_date.c,v 1.6 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/date.h" #include "utils/date.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_float4.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_float8.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.c,v 1.12 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
PG_MODULE_MAGIC; PG_MODULE_MAGIC;
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#ifndef __BTREE_GIST_H__ #ifndef __BTREE_GIST_H__
#define __BTREE_GIST_H__ #define __BTREE_GIST_H__
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_inet.c,v 1.9 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int2.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int4.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int8.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_interval.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/timestamp.h" #include "utils/timestamp.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_macaddr.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_numeric.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include <math.h> #include <math.h>
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_oid.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_text.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_var.h" #include "btree_utils_var.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_time.c,v 1.15 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/date.h" #include "utils/date.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_ts.c,v 1.16 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/datetime.h" #include "utils/datetime.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include "btree_utils_num.h" #include "btree_utils_num.h"
#include "utils/cash.h" #include "utils/cash.h"
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.h,v 1.12 2008/05/17 01:28:19 adunstan Exp $
*/
#ifndef __BTREE_UTILS_NUM_H__ #ifndef __BTREE_UTILS_NUM_H__
#define __BTREE_UTILS_NUM_H__ #define __BTREE_UTILS_NUM_H__
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.19 2008/05/17 01:28:19 adunstan Exp $
*/
#include "btree_gist.h" #include "btree_gist.h"
#include <math.h> #include <math.h>
......
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.h,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#ifndef __BTREE_UTILS_VAR_H__ #ifndef __BTREE_UTILS_VAR_H__
#define __BTREE_UTILS_VAR_H__ #define __BTREE_UTILS_VAR_H__
......
/* Both POSIX and CRC32 checksums */ /*
* $PostgreSQL: pgsql/contrib/hstore/crc32.c,v 1.3 2008/05/17 01:28:19 adunstan Exp $
*
* Both POSIX and CRC32 checksums */
#include <sys/types.h> #include <sys/types.h>
#include <stdio.h> #include <stdio.h>
......
/*
* $PostgreSQL: pgsql/contrib/hstore/crc32.h,v 1.2 2008/05/17 01:28:19 adunstan Exp $
*/
#ifndef _CRC32_H #ifndef _CRC32_H
#define _CRC32_H #define _CRC32_H
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int.h,v 1.16 2008/05/17 01:28:19 adunstan Exp $
*/
#ifndef ___INT_H__ #ifndef ___INT_H__
#define ___INT_H__ #define ___INT_H__
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int_bool.c,v 1.15 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int_gin.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "access/gist.h" #include "access/gist.h"
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int_gist.c,v 1.22 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "access/gist.h" #include "access/gist.h"
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int_op.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "lib/stringinfo.h" #include "lib/stringinfo.h"
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_int_tool.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "catalog/pg_type.h" #include "catalog/pg_type.h"
......
/*
* $PostgreSQL: pgsql/contrib/intarray/_intbig_gist.c,v 1.19 2008/05/17 01:28:19 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#include "access/gist.h" #include "access/gist.h"
......
/* /*
* $PostgreSQL: pgsql/contrib/ltree/_ltree_gist.c,v 1.25 2008/05/17 01:28:19 adunstan Exp $
*
*
* GiST support for ltree[] * GiST support for ltree[]
* Teodor Sigaev <teodor@stack.net> * Teodor Sigaev <teodor@stack.net>
*/ */
......
/* /*
* $PostgreSQL: pgsql/contrib/ltree/_ltree_op.c,v 1.12 2008/05/17 01:28:19 adunstan Exp $
*
*
* op function for ltree[] * op function for ltree[]
* Teodor Sigaev <teodor@stack.net> * Teodor Sigaev <teodor@stack.net>
*/ */
......
/* /*
* $PostgreSQL: pgsql/contrib/pageinspect/btreefuncs.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $
*
*
* btreefuncs.c * btreefuncs.c
* *
* Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp> * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp>
......
/* /*
* $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.12 2008/05/17 01:28:21 adunstan Exp $
*
*
* pg_standby.c * pg_standby.c
* *
* Production-ready example of how to create a Warm Standby * Production-ready example of how to create a Warm Standby
......
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm.h,v 1.9 2008/05/17 01:28:21 adunstan Exp $
*/
#ifndef __TRGM_H__ #ifndef __TRGM_H__
#define __TRGM_H__ #define __TRGM_H__
......
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gin.c,v 1.4 2008/05/17 01:28:21 adunstan Exp $
*/
#include "trgm.h" #include "trgm.h"
#include "access/gin.h" #include "access/gin.h"
......
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gist.c,v 1.14 2008/05/17 01:28:21 adunstan Exp $
*/
#include "trgm.h" #include "trgm.h"
#include "access/gist.h" #include "access/gist.h"
......
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_op.c,v 1.10 2008/05/17 01:28:21 adunstan Exp $
*/
#include "trgm.h" #include "trgm.h"
#include <ctype.h> #include <ctype.h>
#include "utils/array.h" #include "utils/array.h"
......
/* $OpenBSD: rijndael.h,v 1.3 2001/05/09 23:01:32 markus Exp $ */ /*
* $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.h,v 1.6 2008/05/17 01:28:21 adunstan Exp $
*
* $OpenBSD: rijndael.h,v 1.3 2001/05/09 23:01:32 markus Exp $ */
/* This is an independent implementation of the encryption algorithm: */ /* This is an independent implementation of the encryption algorithm: */
/* */ /* */
......
/* /*
* $PostgreSQL: pgsql/contrib/pgstattuple/pgstatindex.c,v 1.11 2008/05/17 01:28:22 adunstan Exp $
*
*
* pgstatindex * pgstatindex
* *
* Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp> * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp>
......
/****************************************************************************** /*
* $PostgreSQL: pgsql/contrib/seg/seg.c,v 1.24 2008/05/17 01:28:22 adunstan Exp $
*
******************************************************************************
This file contains routines that can be bound to a Postgres backend and 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 called by the backend in the process of processing queries. The calling
format for these routines is dictated by Postgres architecture. format for these routines is dictated by Postgres architecture.
......
/*
* $PostgreSQL: pgsql/contrib/seg/segdata.h,v 1.5 2008/05/17 01:28:22 adunstan Exp $
*/
typedef struct SEG typedef struct SEG
{ {
float4 lower; float4 lower;
......
/*
* $PostgreSQL: pgsql/contrib/spi/autoinc.c,v 1.15 2008/05/17 01:28:22 adunstan Exp $
*/
#include "executor/spi.h" /* this is what you need to work with SPI */ #include "executor/spi.h" /* this is what you need to work with SPI */
#include "commands/trigger.h" /* -"- and triggers */ #include "commands/trigger.h" /* -"- and triggers */
......
/* /*
* $PostgreSQL: pgsql/contrib/spi/refint.c,v 1.33 2008/05/17 01:28:22 adunstan Exp $
*
*
* refint.c -- set of functions to define referential integrity * refint.c -- set of functions to define referential integrity
* constraints using general triggers. * constraints using general triggers.
*/ */
......
/* /*
* $PostgreSQL: pgsql/contrib/spi/timetravel.c,v 1.29 2008/05/17 01:28:22 adunstan Exp $
*
*
* timetravel.c -- function to get time travel feature * timetravel.c -- function to get time travel feature
* using general triggers. * using general triggers.
*/ */
......
/* /*
* $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.c,v 1.53 2008/05/17 01:28:22 adunstan Exp $
*
*
* tablefunc * tablefunc
* *
* Sample to demonstrate C functions which return setof scalar * Sample to demonstrate C functions which return setof scalar
......
/* /*
* $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.h,v 1.14 2008/05/17 01:28:22 adunstan Exp $
*
*
* tablefunc * tablefunc
* *
* Sample to demonstrate C functions which return setof scalar * Sample to demonstrate C functions which return setof scalar
......
/* Parser interface for DOM-based parser (libxml) rather than /*
* $PostgreSQL: pgsql/contrib/xml2/xpath.c,v 1.20 2008/05/17 01:28:22 adunstan Exp $
*
* Parser interface for DOM-based parser (libxml) rather than
stream-based SAX-type parser */ stream-based SAX-type parser */
#include "postgres.h" #include "postgres.h"
......
/* XSLT processing functions (requiring libxslt) */ /*
* $PostgreSQL: pgsql/contrib/xml2/xslt_proc.c,v 1.13 2008/05/17 01:28:22 adunstan Exp $
*
* XSLT processing functions (requiring libxslt) */
/* John Gray, for Torchbox 2003-04-01 */ /* John Gray, for Torchbox 2003-04-01 */
#include "postgres.h" #include "postgres.h"
......
/* 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> #include <AvailabilityMacros.h>
#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_2 || !defined(MAC_OS_X_VERSION_10_2) #if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_2 || !defined(MAC_OS_X_VERSION_10_2)
......
/* /*
* $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 * @(#)dlfcn.c 1.7 revision of 95/08/14 19:08:38
* This is an unpublished work copyright (c) 1992 HELIOS Software GmbH * This is an unpublished work copyright (c) 1992 HELIOS Software GmbH
* 30159 Hannover, Germany * 30159 Hannover, Germany
......
/* 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 * see sco.h
*/ */
/* 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 * see solaris.h
*/ */
/* 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 * see sunos4.h
*/ */
/* 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 * see svr4.h
*/ */
/* 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 * see univel.h
*/ */
/*------------------------------------------------------------------------- /*
* $PostgreSQL: pgsql/src/backend/port/dynloader/univel.h,v 1.22 2008/05/17 01:28:23 adunstan Exp $
*
*-------------------------------------------------------------------------
* *
* univel.h * univel.h
* port-specific prototypes for Intel x86/UNIXWARE * port-specific prototypes for Intel x86/UNIXWARE
......
/* 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 * see unixware.h
*/ */
/*------------------------------------------------------------------------- /*
* $PostgreSQL: pgsql/src/backend/port/dynloader/unixware.h,v 1.20 2008/05/17 01:28:23 adunstan Exp $
*
*-------------------------------------------------------------------------
* *
* unixware.h * unixware.h
* port-specific prototypes for Intel x86/UNIXWARE 7 * port-specific prototypes for Intel x86/UNIXWARE 7
......
/*
* $PostgreSQL: pgsql/src/backend/port/dynloader/win32.h,v 1.4 2008/05/17 01:28:23 adunstan Exp $
*/
#ifndef PORT_PROTOS_H #ifndef PORT_PROTOS_H
#define PORT_PROTOS_H #define PORT_PROTOS_H
......
/*
* $PostgreSQL: pgsql/src/backend/port/nextstep/port.c,v 1.11 2008/05/17 01:28:23 adunstan Exp $
*/
#include "postgres.h" #include "postgres.h"
#ifndef _POSIX_SOURCE #ifndef _POSIX_SOURCE
......
/*- /*
* $PostgreSQL: pgsql/src/backend/utils/mb/wstrcmp.c,v 1.9 2008/05/17 01:28:24 adunstan Exp $
*
*-
* Copyright (c) 1990, 1993 * Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved. * The Regents of the University of California. All rights reserved.
* *
......
/* /*
* $PostgreSQL: pgsql/src/backend/utils/mb/wstrncmp.c,v 1.9 2008/05/17 01:28:24 adunstan Exp $
*
*
* Copyright (c) 1989, 1993 * Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved. * The Regents of the University of California. All rights reserved.
* *
......
/*------------------------------------------------------------------------- /*
* $PostgreSQL: pgsql/src/include/commands/comment.h,v 1.22 2008/05/17 01:28:24 adunstan Exp $
*
*-------------------------------------------------------------------------
* *
* comment.h * comment.h
* *
......
/*------------------------------------------------------------------------- /*
* $PostgreSQL: pgsql/src/include/commands/proclang.h,v 1.14 2008/05/17 01:28:24 adunstan Exp $
*
*-------------------------------------------------------------------------
* *
* proclang.h * proclang.h
* prototypes for proclang.c. * prototypes for proclang.c.
......
/*
* $PostgreSQL: pgsql/src/include/port/aix.h,v 1.12 2008/05/17 01:28:24 adunstan Exp $
*/
#define CLASS_CONFLICT #define CLASS_CONFLICT
#define DISABLE_XOPEN_NLS #define DISABLE_XOPEN_NLS
/*
* $PostgreSQL: pgsql/src/include/port/bsdi.h,v 1.14 2008/05/17 01:28:24 adunstan Exp $
*/
/* 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 SCO_ACCEPT_BUG
#define USE_UNIVEL_CC #define USE_UNIVEL_CC
/* 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 #define SPRINTF_CHAR
/*
* $PostgreSQL: pgsql/src/include/port/ultrix4.h,v 1.12 2008/05/17 01:28:24 adunstan Exp $
*/
#define NOFIXADE #define NOFIXADE
#define NEED_STRDUP #define NEED_STRDUP
......
/*************************************** /*
* $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 * Define this if you are compiling with
* the native UNIXWARE C compiler. * the native UNIXWARE C compiler.
***************************************/ ***************************************/
......
/* 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 #define SCO_ACCEPT_BUG
/*************************************** /***************************************
......
/*
* $PostgreSQL: pgsql/src/include/port/win32/pwd.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
*/
/*
* $PostgreSQL: pgsql/src/include/port/win32/sys/wait.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
*/
/* /*
* $PostgreSQL: pgsql/src/include/utils/cash.h,v 1.26 2008/05/17 01:28:25 adunstan Exp $
*
*
* cash.h * cash.h
* Written by D'Arcy J.M. Cain * Written by D'Arcy J.M. Cain
* *
......
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sql3types.h,v 1.12 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef _ECPG_SQL3TYPES_H #ifndef _ECPG_SQL3TYPES_H
#define _ECPG_SQL3TYPES_H #define _ECPG_SQL3TYPES_H
......
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlca.h,v 1.30 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef POSTGRES_SQLCA_H #ifndef POSTGRES_SQLCA_H
#define POSTGRES_SQLCA_H #define POSTGRES_SQLCA_H
......
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlda.h,v 1.3 2008/05/17 01:28:25 adunstan Exp $
*/
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqltypes.h,v 1.8 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef ECPG_SQLTYPES_H #ifndef ECPG_SQLTYPES_H
#define ECPG_SQLTYPES_H #define ECPG_SQLTYPES_H
......
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/timestamp.c,v 1.42 2008/05/17 01:28:25 adunstan Exp $
*/
#include "postgres_fe.h" #include "postgres_fe.h"
#include <time.h> #include <time.h>
......
/*
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/type.h,v 1.49 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef _ECPG_PREPROC_TYPE_H #ifndef _ECPG_PREPROC_TYPE_H
#define _ECPG_PREPROC_TYPE_H #define _ECPG_PREPROC_TYPE_H
......
/*
* $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 REGRESSDB1 regress1;
exec sql define REGRESSDB2 connectdb; exec sql define REGRESSDB2 connectdb;
......
/* /*
* $PostgreSQL: pgsql/src/interfaces/libpq/win32.c,v 1.24 2008/05/17 01:28:25 adunstan Exp $
*
*
* FILE * FILE
* win32.c * win32.c
* *
......
/*
* $PostgreSQL: pgsql/src/interfaces/libpq/win32.h,v 1.29 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef __win32_h_included #ifndef __win32_h_included
#define __win32_h_included #define __win32_h_included
......
/* /*
* $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 * This kludge is necessary because of the conflicting
* definitions of 'DEBUG' between postgres and perl. * definitions of 'DEBUG' between postgres and perl.
* we'll live. * we'll live.
......
/*
* $PostgreSQL: pgsql/src/port/pthread-win32.h,v 1.4 2008/05/17 01:28:25 adunstan Exp $
*/
#ifndef __PTHREAD_H #ifndef __PTHREAD_H
#define __PTHREAD_H #define __PTHREAD_H
......
/*------------------------------------------------------------------------- /*
* $PostgreSQL: pgsql/src/port/rand.c,v 1.5 2008/05/17 01:28:25 adunstan Exp $
*
*-------------------------------------------------------------------------
* *
* rand.c * rand.c
* Missing rand implementations for Win32 * Missing rand implementations for Win32
......
/* $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 <Todd.Miller@courtesan.com> * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
......
/* /*
* $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) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1990 The Regents of the University of California. * Portions Copyright (c) 1990 The Regents of the University of California.
* All rights reserved. * All rights reserved.
......
/* /*
* $PostgreSQL: pgsql/src/port/strtoul.c,v 1.4 2008/05/17 01:28:25 adunstan Exp $
*
*
* Copyright (c) 1990, 1993 * Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved. * The Regents of the University of California. All rights reserved.
* *
......
/* /*
* $PostgreSQL: pgsql/src/test/examples/testlibpq.c,v 1.17 2008/05/17 01:28:25 adunstan Exp $
*
*
* testlibpq.c * testlibpq.c
* *
* Test the C version of libpq, the PostgreSQL frontend library. * Test the C version of libpq, the PostgreSQL frontend library.
......
/* /*
* $PostgreSQL: pgsql/src/test/examples/testlibpq2.c,v 1.14 2008/05/17 01:28:26 adunstan Exp $
*
*
* testlibpq2.c * testlibpq2.c
* Test of the asynchronous notification interface * Test of the asynchronous notification interface
* *
......
/* /*
* $PostgreSQL: pgsql/src/test/examples/testlibpq3.c,v 1.15 2008/05/17 01:28:26 adunstan Exp $
*
*
* testlibpq3.c * testlibpq3.c
* Test out-of-line parameters and binary I/O. * Test out-of-line parameters and binary I/O.
* *
......
/* /*
* $PostgreSQL: pgsql/src/test/examples/testlibpq4.c,v 1.13 2008/05/17 01:28:26 adunstan Exp $
*
*
* testlibpq4.c * testlibpq4.c
* this test program shows to use LIBPQ to make multiple backend * this test program shows to use LIBPQ to make multiple backend
* connections * connections
......
/*
* $PostgreSQL: pgsql/src/test/locale/test-ctype.c,v 1.5 2008/05/17 01:28:26 adunstan Exp $
*/
/* /*
......
/* /*
* $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.21 2008/05/17 01:28:26 adunstan Exp $
*
*
* test_fsync.c * test_fsync.c
* test various fsync() methods * test various fsync() methods
*/ */
......
/****************************************************************************** /*
* $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 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 called by the backend in the process of processing queries. The calling
format for these routines is dictated by Postgres architecture. format for these routines is dictated by Postgres architecture.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment