1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Change #include's to use <> and "" as appropriate.

This commit is contained in:
Bruce Momjian
1999-07-15 23:04:24 +00:00
parent 2e6b1e63a3
commit a9591ce66a
211 changed files with 784 additions and 784 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.37 1999/05/26 12:55:15 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.38 1999/07/15 23:03:12 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,14 +30,14 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <postgres.h>
#include <miscadmin.h>
#include "postgres.h"
#include "miscadmin.h"
#include <libpq/auth.h>
#include <libpq/libpq.h>
#include <libpq/hba.h>
#include <libpq/password.h>
#include <libpq/crypt.h>
#include "libpq/auth.h"
#include "libpq/libpq.h"
#include "libpq/hba.h"
#include "libpq/password.h"
#include "libpq/crypt.h"
static void sendAuthRequest(Port *port, AuthRequest areq, PacketDoneProc handler);
@@ -62,7 +62,7 @@ static void auth_failed(Port *port);
*----------------------------------------------------------------
*/
#include <krb.h>
#include "krb.h"
/*
* pg_krb4_recvauth -- server routine to receive authentication information
@@ -149,7 +149,7 @@ pg_krb4_recvauth(Port *port)
*----------------------------------------------------------------
*/
#include <krb5/krb5.h>
#include "krb5/krb5.h"
/*
* pg_an_to_ln -- return the local name corresponding to an authentication

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: be-dumpdata.c,v 1.27 1999/07/15 22:39:13 momjian Exp $
* $Id: be-dumpdata.c,v 1.28 1999/07/15 23:03:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -29,13 +29,13 @@
*/
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <lib/dllist.h>
#include <libpq/libpq.h>
#include <access/heapam.h>
#include <catalog/catalog.h>
#include <access/printtup.h>
#include "lib/dllist.h"
#include "libpq/libpq.h"
#include "access/heapam.h"
#include "catalog/catalog.h"
#include "access/printtup.h"
/* ----------------
* backend portal stack for recursive PQexec calls

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.37 1999/07/15 22:39:13 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.38 1999/07/15 23:03:13 momjian Exp $
*
* NOTES
* This should be moved to a more appropriate place. It is here
@@ -35,12 +35,12 @@
#include <unistd.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <libpq/libpq-fs.h>
#include "libpq/libpq-fs.h"
#include <catalog/pg_shadow.h> /* for superuser() */
#include <storage/large_object.h>
#include <libpq/be-fsstubs.h>
#include "storage/large_object.h"
#include "libpq/be-fsstubs.h"
/* [PA] is Pascal Andr<64> <andre@via.ecp.fr> */

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.21 1999/07/15 22:39:14 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.22 1999/07/15 23:03:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,12 +20,12 @@
* NOTES
* These routines are compiled into the postgres backend.
*/
#include <postgres.h>
#include "postgres.h"
#include <tcop/fastpath.h>
#include <tcop/tcopprot.h>
#include <libpq/libpq.h>
#include <utils/builtins.h>
#include "tcop/fastpath.h"
#include "tcop/tcopprot.h"
#include "libpq/libpq.h"
#include "utils/builtins.h"
#ifndef HAVE_MEMMOVE
#else
#include <string.h>

View File

@@ -5,7 +5,7 @@
* wherein you authenticate a user by seeing what IP address the system
* says he comes from and possibly using ident).
*
* $Id: hba.c,v 1.44 1999/07/15 22:39:14 momjian Exp $
* $Id: hba.c,v 1.45 1999/07/15 23:03:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,9 +20,9 @@
#include <arpa/inet.h>
#include <unistd.h>
#include <postgres.h>
#include <miscadmin.h>
#include <libpq/libpq.h>
#include "postgres.h"
#include "miscadmin.h"
#include "libpq/libpq.h"
/* Some standard C libraries, including GNU, have an isblank() function.
Others, including Solaris, do not. So we have our own.

View File

@@ -1,14 +1,14 @@
/*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: password.c,v 1.22 1999/07/15 22:39:14 momjian Exp $
* $Id: password.c,v 1.23 1999/07/15 23:03:14 momjian Exp $
*
*/
#include <postgres.h>
#include <miscadmin.h>
#include <libpq/password.h>
#include <libpq/libpq.h>
#include "postgres.h"
#include "miscadmin.h"
#include "libpq/password.h"
#include "libpq/libpq.h"
#include <string.h>
#include <unistd.h>
#ifdef HAVE_CRYPT_H

View File

@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: portal.c,v 1.23 1999/07/15 22:39:14 momjian Exp $
* $Id: portal.c,v 1.24 1999/07/15 23:03:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -53,7 +53,7 @@
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <libpq/libpq.h> /* where the declarations go */

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.17 1999/07/15 22:39:15 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.18 1999/07/15 23:03:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -50,7 +50,7 @@
#include <string.h>
#include <sys/types.h>
#include <postgres.h>
#include "postgres.h"
#include <libpq/libpq.h> /* where the declarations go */

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.20 1999/07/15 22:39:15 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.21 1999/07/15 23:03:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -23,8 +23,8 @@
#include <fcntl.h>
#include <errno.h>
#include <postgres.h>
#include <libpq/libpq.h>
#include "postgres.h"
#include "libpq/libpq.h"
/*

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.11 1999/02/13 23:15:48 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.12 1999/07/15 23:03:14 momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
@@ -37,11 +37,11 @@
* is to do signal-handler reinstallation, which doesn't work well
* at all.
* ------------------------------------------------------------------------*/
#include <postgres.h>
#include "postgres.h"
#include <signal.h>
#include <libpq/pqsignal.h>
#include "libpq/pqsignal.h"
pqsigfunc
pqsignal(int signo, pqsigfunc func)

View File

@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: util.c,v 1.10 1999/07/15 22:39:15 momjian Exp $
* $Id: util.c,v 1.11 1999/07/15 23:03:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <libpq/libpq.h> /* where the declarations go */