diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-12-17 04:44:50 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-12-17 04:44:50 +0000 |
commit | 9ef6b32c4711f16b93cd51ce4bcf48c06a53f729 (patch) | |
tree | a24c1b56e0e4e591bfd1abd613173b71ec87da77 /src/backend/commands/vacuum.c | |
parent | e2d9501094815b141eff6c9338897068eb5868db (diff) | |
download | postgresql-9ef6b32c4711f16b93cd51ce4bcf48c06a53f729.tar.gz postgresql-9ef6b32c4711f16b93cd51ce4bcf48c06a53f729.zip |
Makefile cleaned up
async.c: #include <port-protos.h> surrounded by an #ifdef HAVE_STRDUP
vacuum.c: #include <port-protos.h> commented out...can someone comment as
to why it was included, as it doesn't seem to have any effect
under FreeBSD so far...would like some sort of #ifdef wrapper
like async.c if possible
Diffstat (limited to 'src/backend/commands/vacuum.c')
-rw-r--r-- | src/backend/commands/vacuum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 2de53600ceb..025c00ded6a 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.53 1997/11/25 21:59:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.54 1997/12/17 04:44:50 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -54,7 +54,7 @@ #include <sys/resource.h> #endif -#include <port-protos.h> +/* #include <port-protos.h> */ extern int BlowawayRelationBuffers(Relation rdesc, BlockNumber block); |