diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 10:59:42 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 10:59:42 +0000 |
commit | 76294e1d3859830f7e6cd0582f97ee6c6299a5b0 (patch) | |
tree | 14410077d04539b47390977d70dbb6702e9f3566 /src/backend/optimizer/path/joinpath.c | |
parent | eb501f1cd39576309fc6834ce15561ff1bc47bcb (diff) | |
download | postgresql-76294e1d3859830f7e6cd0582f97ee6c6299a5b0.tar.gz postgresql-76294e1d3859830f7e6cd0582f97ee6c6299a5b0.zip |
Cleanup Makefiles
Add #include "postgres.h"
and
#include <sys/types.h>
Diffstat (limited to 'src/backend/optimizer/path/joinpath.c')
-rw-r--r-- | src/backend/optimizer/path/joinpath.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/optimizer/path/joinpath.c b/src/backend/optimizer/path/joinpath.c index e727388715c..87365278ffa 100644 --- a/src/backend/optimizer/path/joinpath.c +++ b/src/backend/optimizer/path/joinpath.c @@ -7,12 +7,15 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.1.1.1 1996/07/09 06:21:35 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.2 1996/10/31 10:59:00 scrappy Exp $ * *------------------------------------------------------------------------- */ +#include <sys/types.h> #include <math.h> +#include "postgres.h" + #include "storage/buf_internals.h" #include "nodes/pg_list.h" |