diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 14:29:22 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 14:29:22 +0000 |
commit | 950c57600e72b28760c35b1c0fc2b371a106fa54 (patch) | |
tree | 4fe43ed31b9e28e96fd5adef52204f91197a6ab7 /src | |
parent | 517c8db8695e62afee438599a0c0da8f888b7490 (diff) | |
download | postgresql-950c57600e72b28760c35b1c0fc2b371a106fa54.tar.gz postgresql-950c57600e72b28760c35b1c0fc2b371a106fa54.zip |
rearrange ordering of headers os that postgres.h is first
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/optimizer/geqo/geqo_eval.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/geqo/geqo_eval.c b/src/backend/optimizer/geqo/geqo_eval.c index a5f911eb585..ebf9a8c5188 100644 --- a/src/backend/optimizer/geqo/geqo_eval.c +++ b/src/backend/optimizer/geqo/geqo_eval.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_eval.c,v 1.2 1997/02/19 14:26:42 scrappy Exp $ + * $Id: geqo_eval.c,v 1.3 1997/02/19 14:29:22 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -18,16 +18,16 @@ =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= */ +#include "postgres.h" + #include <math.h> -#if HAVE_LIMITS_H +#ifdef HAVE_LIMITS_H # include <machine/limits.h> # define MAXINT INT_MAX #else # include <values.h> #endif -#include "postgres.h" - #include "nodes/pg_list.h" #include "nodes/relation.h" #include "nodes/primnodes.h" |