1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Put back #include <sys/time.h> in files that seem to need it on Linux.

This commit is contained in:
Tom Lane
2004-05-21 16:08:47 +00:00
parent ff0b706b13
commit e6319d1d28
3 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/nabstime.c,v 1.121 2004/05/21 05:08:02 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/nabstime.c,v 1.122 2004/05/21 16:08:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -19,6 +19,7 @@
#include <ctype.h>
#include <float.h>
#include <limits.h>
#include <sys/time.h>
#include "access/xact.h"
#include "libpq/pqformat.h"