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/port/dynloader/hpux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/port/dynloader/hpux.c') diff --git a/src/backend/port/dynloader/hpux.c b/src/backend/port/dynloader/hpux.c index 8cbf3327da1..38a06b6dc6f 100644 --- a/src/backend/port/dynloader/hpux.c +++ b/src/backend/port/dynloader/hpux.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.20 2002/06/20 20:29:33 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.21 2002/09/05 00:43:07 tgl Exp $ * * NOTES * all functions are defined here -- it's impossible to trace the @@ -16,11 +16,11 @@ * *------------------------------------------------------------------------- */ +#include "postgres.h" + /* System includes */ #include -#include "postgres.h" - #include "dl.h" #include "dynloader.h" #include "utils/dynamic_loader.h" -- cgit v1.2.3