From 52c9d259335c9670f6487c5f40fc53b57a4c7b17 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 5 Sep 2002 00:43:07 +0000 Subject: Be careful to include postgres.h *before* any system headers, to ensure that the right flavors of largefile-related definitions are seen. Most of these changes are probably unnecessary, but better safe than sorry. --- src/backend/storage/file/buffile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/storage/file/buffile.c') diff --git a/src/backend/storage/file/buffile.c b/src/backend/storage/file/buffile.c index e518897b348..7e78793a404 100644 --- a/src/backend/storage/file/buffile.c +++ b/src/backend/storage/file/buffile.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.13 2002/06/20 20:29:34 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.14 2002/09/05 00:43:07 tgl Exp $ * * NOTES: * @@ -32,10 +32,10 @@ *------------------------------------------------------------------------- */ -#include - #include "postgres.h" +#include + #include "storage/fd.h" #include "storage/buffile.h" -- cgit v1.2.3