From a95674269f2499d6149c5f94e6acf015edcb4a34 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Fri, 1 Nov 1996 09:41:41 +0000 Subject: More intelligent #include cleanups, as pointed out by Bryan... Compiled with -Wall -Werror --- src/backend/access/common/heaptuple.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/backend/access/common/heaptuple.c') diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index 54edcde7135..55e57818b33 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.11 1996/11/01 09:12:18 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.12 1996/11/01 09:41:35 scrappy Exp $ * * NOTES * The old interface functions have been converted to macros @@ -19,14 +19,14 @@ #include "postgres.h" -#include "utils/palloc.h" -#include "storage/bufpage.h" +#include "access/htup.h" #include "access/transam.h" -#include "storage/buf.h" -#include "access/tupmacs.h" #include "access/tupdesc.h" +#include "access/tupmacs.h" +#include "storage/buf.h" +#include "storage/bufpage.h" #include "utils/memutils.h" -#include "access/htup.h" +#include "utils/palloc.h" #ifndef HAVE_MEMMOVE # include "regex/utils.h" -- cgit v1.2.3