aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/async.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-06 08:21:43 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-06 08:21:43 +0000
commit7385619f14eca67b7dccf950c4865f90cce035a0 (patch)
tree8894af43b73f9a12ad179b148d63c89559983edb /src/backend/commands/async.c
parent33a8df7edd9088a9fb04b9fbba2bc0844158ebbc (diff)
downloadpostgresql-7385619f14eca67b7dccf950c4865f90cce035a0.tar.gz
postgresql-7385619f14eca67b7dccf950c4865f90cce035a0.zip
Clean it up so that it compiles
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r--src/backend/commands/async.c42
1 files changed, 17 insertions, 25 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c
index cb02d501047..2bda8a0765c 100644
--- a/src/backend/commands/async.c
+++ b/src/backend/commands/async.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.5 1996/11/03 23:57:19 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.6 1996/11/06 08:21:26 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -58,36 +58,28 @@
* #4,#5 are changing soon with pending rewrite of portal/protocol.
*
*/
-
-#include "postgres.h"
-
-#include "utils/syscache.h"
-#include "access/relscan.h"
-#include "access/xact.h"
-#include "lib/dllist.h"
-#include "utils/palloc.h"
-
-#include "tcop/dest.h"
-#include "catalog/pg_proc.h"
-#include "catalog/catname.h"
-#include "catalog/pg_listener.h"
-
-#include "access/heapam.h"
-
-#include "storage/bufmgr.h"
-
-#include "nodes/memnodes.h"
-#include "utils/mcxt.h"
-#include "commands/async.h"
-
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
-
#include <netinet/in.h>
-#include "libpq/libpq.h"
+#include <postgres.h>
+
+#include <utils/syscache.h>
+#include <access/relscan.h>
+#include <access/xact.h>
+#include <lib/dllist.h>
+#include <tcop/dest.h>
+#include <catalog/pg_proc.h>
+#include <catalog/catname.h>
+#include <catalog/pg_listener.h>
+#include <access/heapam.h>
+#include <storage/bufmgr.h>
+#include <nodes/memnodes.h>
+#include <utils/mcxt.h>
+#include <commands/async.h>
+#include <libpq/libpq.h>
static int notifyFrontEndPending = 0;
static int notifyIssued = 0;