diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-05 00:43:07 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-05 00:43:07 +0000 |
| commit | 52c9d259335c9670f6487c5f40fc53b57a4c7b17 (patch) | |
| tree | 721b585843dca83ac9517ca933fa891c4532a530 /src/backend/optimizer/geqo/geqo_selection.c | |
| parent | 3f63787cbfe0f1e837c92cd8ac35fd7ab811c18b (diff) | |
| download | postgresql-52c9d259335c9670f6487c5f40fc53b57a4c7b17.tar.gz | |
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.
Diffstat (limited to 'src/backend/optimizer/geqo/geqo_selection.c')
| -rw-r--r-- | src/backend/optimizer/geqo/geqo_selection.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/optimizer/geqo/geqo_selection.c b/src/backend/optimizer/geqo/geqo_selection.c index ae4cbbf426..807e4efba1 100644 --- a/src/backend/optimizer/geqo/geqo_selection.c +++ b/src/backend/optimizer/geqo/geqo_selection.c @@ -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" |
