1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +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

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: geqo_selection.c,v 1.13 2002/06/20 20:29:29 momjian Exp $
* $Id: geqo_selection.c,v 1.14 2002/09/05 00:43:06 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -34,9 +34,10 @@
/* */
/*************************************************************/
#include "postgres.h"
#include <math.h>
#include "postgres.h"
#include "optimizer/geqo_copy.h"
#include "optimizer/geqo_random.h"
#include "optimizer/geqo_selection.h"

View File

@@ -9,14 +9,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/tidpath.c,v 1.10 2002/06/20 20:29:30 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/tidpath.c,v 1.11 2002/09/05 00:43:06 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include <math.h>
#include "postgres.h"
#include <math.h>
#include "catalog/pg_operator.h"
#include "optimizer/clauses.h"
#include "optimizer/cost.h"