1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

Change #include's to use <> and "" as appropriate.

This commit is contained in:
Bruce Momjian
1999-07-15 23:04:24 +00:00
parent 2e6b1e63a3
commit a9591ce66a
211 changed files with 784 additions and 784 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.49 1999/07/15 22:38:40 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.50 1999/07/15 23:02:57 momjian Exp $
*
*
* INTERFACE ROUTINES
@ -73,17 +73,17 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <miscadmin.h>
#include <utils/relcache.h>
#include <access/valid.h>
#include <access/hio.h>
#include <storage/smgr.h>
#include <catalog/catalog.h>
#include <utils/inval.h>
#include <utils/builtins.h>
#include "access/heapam.h"
#include "miscadmin.h"
#include "utils/relcache.h"
#include "access/valid.h"
#include "access/hio.h"
#include "storage/smgr.h"
#include "catalog/catalog.h"
#include "utils/inval.h"
#include "utils/builtins.h"
#ifndef HAVE_MEMMOVE
#else

View File

@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Id: hio.c,v 1.23 1999/07/15 22:38:41 momjian Exp $
* $Id: hio.c,v 1.24 1999/07/15 23:02:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hio.h>
#include <access/heapam.h>
#include "access/hio.h"
#include "access/heapam.h"
/*
* amputunique - place tuple at tid

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.18 1999/07/15 22:38:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.19 1999/07/15 23:02:58 momjian Exp $
*
* NOTES
* initam should be moved someplace else.
@ -18,9 +18,9 @@
#include <stdio.h>
#include <time.h>
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include "access/heapam.h"
#ifndef HAVE_MEMMOVE
#else