summaryrefslogtreecommitdiff
path: root/src/backend/libpq
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/libpq')
-rw-r--r--src/backend/libpq/be-fsstubs.c4
-rw-r--r--src/backend/libpq/portal.c4
-rw-r--r--src/backend/libpq/portalbuf.c4
-rw-r--r--src/backend/libpq/pqcomm.c6
-rw-r--r--src/backend/libpq/util.c4
5 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/libpq/be-fsstubs.c b/src/backend/libpq/be-fsstubs.c
index eecb133137..1ad0dbf92a 100644
--- a/src/backend/libpq/be-fsstubs.c
+++ b/src/backend/libpq/be-fsstubs.c
@@ -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"
diff --git a/src/backend/libpq/portal.c b/src/backend/libpq/portal.c
index 9680909c30..eef88b37e4 100644
--- a/src/backend/libpq/portal.c
+++ b/src/backend/libpq/portal.c
@@ -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"
/* ----------------------------------------------------------------
diff --git a/src/backend/libpq/portalbuf.c b/src/backend/libpq/portalbuf.c
index c2b84ab2fa..2bdae59631 100644
--- a/src/backend/libpq/portalbuf.c
+++ b/src/backend/libpq/portalbuf.c
@@ -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;
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c
index 5bff53e54f..4a875bfbff 100644
--- a/src/backend/libpq/pqcomm.c
+++ b/src/backend/libpq/pqcomm.c
@@ -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
diff --git a/src/backend/libpq/util.c b/src/backend/libpq/util.c
index 72c475d375..3d9ba30b49 100644
--- a/src/backend/libpq/util.c
+++ b/src/backend/libpq/util.c
@@ -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"
/* ----------------