diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-06-09 17:05:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-06-09 17:05:14 +0000 |
commit | 7ac67fd189cfc35e9c54c888e8903b5e04b6dcde (patch) | |
tree | ec68f0e812bf6ca42beb75fe29b9627087f6b128 /src | |
parent | 36b8654cb06843b9e23887771a01a28214cdd01c (diff) | |
download | postgresql-7ac67fd189cfc35e9c54c888e8903b5e04b6dcde.tar.gz postgresql-7ac67fd189cfc35e9c54c888e8903b5e04b6dcde.zip |
Add time.h to pg_dumpall.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 0e441bb890d..2eb82d36bbe 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.38 2004/06/07 20:35:57 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.39 2004/06/09 17:05:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +21,7 @@ #include "strdup.h" #endif #include <errno.h> +#include <time.h> #include "getopt_long.h" |