summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-08-18 03:47:08 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-08-18 03:47:08 +0000
commit41298cf8a60ff815b98b9babb341c9c1629c1926 (patch)
treef783c62a6a5932ab6f0a2559cdad571b44ac8008 /src
parent2efb8e80703532744a7caf35244dfe7ad8a85cff (diff)
Add #include <sys/time.h>.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/libpq/libpq-int.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h
index af533444bfd..8bb52d8e306 100644
--- a/src/interfaces/libpq/libpq-int.h
+++ b/src/interfaces/libpq/libpq-int.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: libpq-int.h,v 1.54 2002/08/18 01:35:40 momjian Exp $
+ * $Id: libpq-int.h,v 1.55 2002/08/18 03:47:08 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,8 +20,9 @@
#ifndef LIBPQ_INT_H
#define LIBPQ_INT_H
-#include <sys/types.h>
#include <time.h>
+#include <sys/time.h>
+#include <sys/types.h>
#if defined(WIN32) && (!defined(ssize_t))
typedef int ssize_t; /* ssize_t doesn't exist in VC (atleast not VC6) */