1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Re-add -I../.. for fmgr.h

Change #include "" to #include <>

Remove a few unused #includes

Make sure it compiles with -Wall -Werror
This commit is contained in:
Marc G. Fournier
1996-11-05 07:42:46 +00:00
parent efef619b83
commit 1c3a7767ca
8 changed files with 52 additions and 52 deletions

View File

@@ -8,21 +8,20 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.11 1996/11/05 05:26:31 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.12 1996/11/05 07:42:42 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include <postgres.h>
#include "access/heapam.h"
#include "access/ibit.h"
#include "access/itup.h"
#include "access/relscan.h"
#include "access/tupmacs.h"
#include <access/heapam.h>
#include <access/ibit.h>
#include <access/itup.h>
#include <access/tupmacs.h>
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
# include <regex/utils.h>
#else
# include <string.h>
#endif