syslogger.c needs <sys/time.h> on some platforms, per Greg Mullane.

This commit is contained in:
Tom Lane 2004-08-09 20:28:48 +00:00
parent b06c907645
commit 8cf8b47a21

View File

@ -18,7 +18,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.4 2004/08/06 19:17:31 tgl Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.5 2004/08/09 20:28:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -29,6 +29,7 @@
#include <time.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "libpq/pqsignal.h"
#include "miscadmin.h"