diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 07:42:46 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 07:42:46 +0000 |
commit | 1c3a7767ca9319298ac996f0eab8970e0893dd4d (patch) | |
tree | ede8eb70bfdd2f459094d89574dc8fd7878c620f /src/backend/access/common/indexvalid.c | |
parent | efef619b834d619014d573e91755df7ffdc27118 (diff) | |
download | postgresql-1c3a7767ca9319298ac996f0eab8970e0893dd4d.tar.gz postgresql-1c3a7767ca9319298ac996f0eab8970e0893dd4d.zip |
Re-add -I../.. for fmgr.h
Change #include "" to #include <>
Remove a few unused #includes
Make sure it compiles with -Wall -Werror
Diffstat (limited to 'src/backend/access/common/indexvalid.c')
-rw-r--r-- | src/backend/access/common/indexvalid.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/access/common/indexvalid.c b/src/backend/access/common/indexvalid.c index bb1970c4fff..5314804d791 100644 --- a/src/backend/access/common/indexvalid.c +++ b/src/backend/access/common/indexvalid.c @@ -7,17 +7,17 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.10 1996/11/03 08:16:48 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.11 1996/11/05 07:42:43 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include "postgres.h" +#include <postgres.h> -#include "access/htup.h" -#include "access/itup.h" -#include "access/skey.h" -#include "executor/execdebug.h" +#include <access/htup.h> +#include <access/itup.h> +#include <access/skey.h> +#include <executor/execdebug.h> /* ---------------------------------------------------------------- * index scan key qualification code |