Skip to content

Commit 8b63aa1

Browse files
committed
Add back #include <time.h> in a couple of files that seem to need it
on Linux.
1 parent cd00406 commit 8b63aa1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/backend/bootstrap/bootstrap.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.238 2008/01/01 19:45:48 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.239 2008/02/17 04:21:05 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515
#include "postgres.h"
1616

17+
#include <time.h>
1718
#include <unistd.h>
1819
#include <signal.h>
1920
#ifdef HAVE_GETOPT_H

src/backend/tcop/postgres.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.542 2008/01/26 19:55:08 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.543 2008/02/17 04:21:05 tgl Exp $
1212
*
1313
* NOTES
1414
* this is the "main" module of the postgres backend and
@@ -19,6 +19,7 @@
1919

2020
#include "postgres.h"
2121

22+
#include <time.h>
2223
#include <unistd.h>
2324
#include <signal.h>
2425
#include <fcntl.h>

0 commit comments

Comments
 (0)