Fix build break on BSD, OSX, and other systems: add missing <sys/time.h>

include.
This commit is contained in:
Neil Conway 2005-06-30 03:48:58 +00:00
parent 51c58812d9
commit dd4eea257b
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/timestamp.c,v 1.127 2005/06/29 22:51:56 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/timestamp.c,v 1.128 2005/06/30 03:48:58 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -19,6 +19,7 @@
#include <math.h>
#include <float.h>
#include <limits.h>
#include <sys/time.h>
#include "access/hash.h"
#include "access/xact.h"