1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Add CVS tag lines to files that were lacking them.

This commit is contained in:
Bruce Momjian
2006-03-11 04:38:42 +00:00
parent 7992d0fbca
commit f3d99d160d
195 changed files with 375 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.41 2006/03/11 04:38:39 momjian Exp $ */
#include <stdlib.h>
#include <string.h>
#include <errno.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.16 2006/03/11 04:38:39 momjian Exp $ */
#ifndef _ECPG_LIB_EXTERN_H
#define _ECPG_LIB_EXTERN_H

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/datetime.h,v 1.12 2006/03/11 04:38:39 momjian Exp $ */
#ifndef _ECPG_DATETIME_H
#define _ECPG_DATETIME_H

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/decimal.h,v 1.14 2006/03/11 04:38:39 momjian Exp $ */
#ifndef _ECPG_DECIMAL_H
#define _ECPG_DECIMAL_H

View File

@@ -1,5 +1,6 @@
/*
* This file contains stuff needed to be as compatible to Informix as possible.
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpg_informix.h,v 1.18 2006/03/11 04:38:39 momjian Exp $
*/
#ifndef _ECPG_INFORMIX_H
#define _ECPG_INFORMIX_H

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgerrno.h,v 1.27 2006/03/11 04:38:39 momjian Exp $ */
#ifndef _ECPG_ERRNO_H
#define _ECPG_ERRNO_H

View File

@@ -1,6 +1,7 @@
/*
* this is a small part of c.h since we don't want to leak all postgres
* definitions into ecpg programs
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.66 2006/03/11 04:38:39 momjian Exp $
*/
#ifndef _ECPGLIB_H

View File

@@ -4,6 +4,8 @@
*
* All types that can be handled for host variable declarations has to
* be handled eventually.
*
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgtype.h,v 1.36 2006/03/11 04:38:39 momjian Exp $
*/
/*

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_date.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */
#ifndef PGTYPES_DATETIME
#define PGTYPES_DATETIME

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_error.h,v 1.7 2006/03/11 04:38:39 momjian Exp $ */
#define PGTYPES_NUM_OVERFLOW 301
#define PGTYPES_NUM_BAD_NUMERIC 302
#define PGTYPES_NUM_DIVIDE_ZERO 303

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_interval.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */
#ifndef PGTYPES_INTERVAL
#define PGTYPES_INTERVAL

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_numeric.h,v 1.15 2006/03/11 04:38:39 momjian Exp $ */
#ifndef PGTYPES_NUMERIC
#define PGTYPES_NUMERIC

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_timestamp.h,v 1.10 2006/03/11 04:38:39 momjian Exp $ */
#ifndef PGTYPES_TIMESTAMP
#define PGTYPES_TIMESTAMP

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/datetime.c,v 1.27 2006/03/11 04:38:39 momjian Exp $ */
#include "postgres_fe.h"
#include <time.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt.h,v 1.34 2006/03/11 04:38:39 momjian Exp $ */
#ifndef DT_H
#define DT_H

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.34 2006/03/11 04:38:39 momjian Exp $ */
#include "postgres_fe.h"
#include <time.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/extern.h,v 1.8 2006/03/11 04:38:39 momjian Exp $ */
#ifndef __PGTYPES_COMMON_H__
#define __PGTYPES_COMMON_H__

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.31 2006/03/11 04:38:39 momjian Exp $ */
#include "postgres_fe.h"
#include <time.h>
#include <math.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/numeric.c,v 1.25 2006/03/11 04:38:40 momjian Exp $ */
#include "postgres_fe.h"
#include <ctype.h>
#include <limits.h>

View File

@@ -1,6 +1,8 @@
/*
* functions needed for descriptor handling
*
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/descriptor.c,v 1.24 2006/03/11 04:38:40 momjian Exp $
*
* since descriptor might be either a string constant or a string var
* we need to check for a constant if we expect a constant
*/

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/extern.h,v 1.63 2006/03/11 04:38:40 momjian Exp $ */
#ifndef _ECPG_PREPROC_EXTERN_H
#define _ECPG_PREPROC_EXTERN_H

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/output.c,v 1.17 2006/03/11 04:38:40 momjian Exp $ */
#include "postgres_fe.h"
#include "extern.h"

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/dt_test.pgc,v 1.9 2006/03/11 04:38:40 momjian Exp $ */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/header_test.h,v 1.12 2006/03/11 04:38:40 momjian Exp $ */
#include "stdlib.h"
static void

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/num_test.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */
#include <stdio.h>
#include <pgtypes_numeric.h>
#include <decimal.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/perftest.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */
#include <stdio.h>
#include <sys/time.h>
#include <unistd.h>

View File

@@ -1,3 +1,5 @@
/* $PostgreSQL: pgsql/src/interfaces/libpq/libpqdll.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */
#define WIN32_LEAN_AND_MEAN
#include <winsock.h>
#include <windows.h>