1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

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.
This commit is contained in:
Tom Lane
2002-09-05 00:43:07 +00:00
parent 3f63787cbf
commit 52c9d25933
21 changed files with 68 additions and 65 deletions

View File

@ -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 <a.out.h>
#include "postgres.h"
#include "dl.h"
#include "dynloader.h"
#include "utils/dynamic_loader.h"