diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-02-10 04:23:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-02-10 04:23:03 +0000 |
commit | d1587f1f5b8682dafc8bfff42df8b3da87d32d77 (patch) | |
tree | ef80dd8b235fee0442c24985116d6c4f1a1f937d /src | |
parent | 58f337a3435cd6ac46dfca4ce1a44b837080745e (diff) | |
download | postgresql-d1587f1f5b8682dafc8bfff42df8b3da87d32d77.tar.gz postgresql-d1587f1f5b8682dafc8bfff42df8b3da87d32d77.zip |
Looks like we need <unistd.h> for select() on Darwin.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/pgsleep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c index 52ea860e752..41f989dbbea 100644 --- a/src/port/pgsleep.c +++ b/src/port/pgsleep.c @@ -6,12 +6,13 @@ * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.1 2004/02/10 03:42:45 tgl Exp $ + * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.2 2004/02/10 04:23:03 tgl Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" +#include <unistd.h> #include <sys/time.h> |