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

Update #include cleanups

This commit is contained in:
Bruce Momjian
1999-07-16 03:14:30 +00:00
parent a9591ce66a
commit 9b645d481c
109 changed files with 261 additions and 264 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.38 1999/07/15 23:03:13 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.39 1999/07/16 03:12:55 momjian Exp $
*
* NOTES
* This should be moved to a more appropriate place. It is here
@@ -38,7 +38,7 @@
#include "postgres.h"
#include "libpq/libpq-fs.h"
#include <catalog/pg_shadow.h> /* for superuser() */
#include "catalog/pg_shadow.h"
#include "storage/large_object.h"
#include "libpq/be-fsstubs.h"

View File

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

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.18 1999/07/15 23:03:14 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.19 1999/07/16 03:12:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -52,7 +52,7 @@
#include "postgres.h"
#include <libpq/libpq.h> /* where the declarations go */
#include "libpq/libpq.h"
PortalEntry **portals = (PortalEntry **) NULL;
size_t portals_array_size = 0;

View File

@@ -28,7 +28,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pqcomm.c,v 1.74 1999/07/15 22:39:15 momjian Exp $
* $Id: pqcomm.c,v 1.75 1999/07/16 03:12:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -69,7 +69,7 @@
#include <signal.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h> /* for ttyname() */
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
@@ -79,7 +79,7 @@
#include <arpa/inet.h>
#include <sys/file.h>
#include "libpq/libpq.h" /* where my declarations go */
#include "libpq/libpq.h"
#include "miscadmin.h"
#ifndef SOMAXCONN

View File

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