Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian1999-07-15 23:04:24 +0000
committerBruce Momjian1999-07-15 23:04:24 +0000
commita9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch)
tree297fe17b4ac326fa1078134f10099c074e4052e0 /src/backend/commands/rename.c
parent2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff)
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/backend/commands/rename.c')
-rw-r--r--src/backend/commands/rename.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/backend/commands/rename.c b/src/backend/commands/rename.c
index b5a3a5d307c..0064f4a22df 100644
--- a/src/backend/commands/rename.c
+++ b/src/backend/commands/rename.c
@@ -7,23 +7,23 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.27 1999/07/15 22:39:02 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.28 1999/07/15 23:03:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
-#include <postgres.h>
-
-#include <access/heapam.h>
-#include <catalog/catname.h>
-#include <utils/syscache.h>
-#include <catalog/heap.h>
-#include <catalog/indexing.h>
-#include <catalog/catalog.h>
-#include <commands/rename.h>
-#include <miscadmin.h>
+#include "postgres.h"
+
+#include "access/heapam.h"
+#include "catalog/catname.h"
+#include "utils/syscache.h"
+#include "catalog/heap.h"
+#include "catalog/indexing.h"
+#include "catalog/catalog.h"
+#include "commands/rename.h"
+#include "miscadmin.h"
#include <optimizer/prep.h> /* for find_all_inheritors */
#ifndef NO_SECURITY
-#include <utils/acl.h>
+#include "utils/acl.h"
#endif /* !NO_SECURITY */
#ifndef HAVE_MEMMOVE
#else