aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/purge.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/purge.c
parent33a8df7edd9088a9fb04b9fbba2bc0844158ebbc (diff)
downloadpostgresql-7385619f14eca67b7dccf950c4865f90cce035a0.tar.gz
postgresql-7385619f14eca67b7dccf950c4865f90cce035a0.zip
Clean it up so that it compiles
Diffstat (limited to 'src/backend/commands/purge.c')
-rw-r--r--src/backend/commands/purge.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/backend/commands/purge.c b/src/backend/commands/purge.c
index 7b29dbc8522..df43e601bac 100644
--- a/src/backend/commands/purge.c
+++ b/src/backend/commands/purge.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.2 1996/11/03 23:57:35 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/purge.c,v 1.3 1996/11/06 08:21:36 scrappy Exp $
*
* Note:
* XXX There are many instances of int32 instead of ...Time. These
@@ -15,18 +15,16 @@
*
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
+#include <postgres.h>
-#include "access/heapam.h"
-#include "access/xact.h"
-#include "utils/tqual.h" /* for NowTimeQual */
-#include "catalog/catname.h"
-#include "catalog/indexing.h"
-#include "fmgr.h"
-#include "utils/palloc.h"
-
-#include "commands/purge.h"
-#include "utils/builtins.h" /* for isreltime() */
+#include <access/heapam.h>
+#include <access/xact.h>
+#include <utils/tqual.h> /* for NowTimeQual */
+#include <catalog/catname.h>
+#include <catalog/indexing.h>
+#include <fmgr.h>
+#include <commands/purge.h>
+#include <utils/builtins.h> /* for isreltime() */
static char cmdname[] = "RelationPurge";