aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-02-17 04:21:05 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-02-17 04:21:05 +0000
commit8b63aa1ffcae5aae9dd5a6d00a7b509308bef6f4 (patch)
tree9768c3a29c97a5835c4d7f4f30946218d48d84bf /src/backend/tcop/postgres.c
parentcd004067742ee16ee63e55abfb4acbd5f09fbaab (diff)
downloadpostgresql-8b63aa1ffcae5aae9dd5a6d00a7b509308bef6f4.tar.gz
postgresql-8b63aa1ffcae5aae9dd5a6d00a7b509308bef6f4.zip
Add back #include <time.h> in a couple of files that seem to need it
on Linux.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 325411df09c..c95695b7f9a 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.542 2008/01/26 19:55:08 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.543 2008/02/17 04:21:05 tgl Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -19,6 +19,7 @@
#include "postgres.h"
+#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>