diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-01-01 15:55:36 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-01-01 15:55:36 -0500 |
commit | 92a73d219052ab4d393ebe7b5362aa7d414156e7 (patch) | |
tree | 1775c6e4b4ef8710b5c2abfca2bb0087fe26f23c /src | |
parent | 5d950e3b0c75d65dd09f8ca5f76cd429a0aabbdc (diff) | |
download | postgresql-92a73d219052ab4d393ebe7b5362aa7d414156e7.tar.gz postgresql-92a73d219052ab4d393ebe7b5362aa7d414156e7.zip |
Add #include <time.h> to pg_ctl.c to fix compiler warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index baef17681b3..03a932970d1 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -23,6 +23,7 @@ #include <locale.h> #include <signal.h> #include <stdlib.h> +#include <time.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> |