diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-19 06:25:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-19 06:25:40 +0000 |
commit | e259780b1393184cc9dd83b2ee5d4c1eb10a2eaa (patch) | |
tree | 497ed81a0737e6aa1020ea8d2e09f57139cbfd0e /src/interfaces/libpq/fe-print.c | |
parent | bf98a4656b1cdb221218f00ee45674a55572034a (diff) | |
download | postgresql-e259780b1393184cc9dd83b2ee5d4c1eb10a2eaa.tar.gz postgresql-e259780b1393184cc9dd83b2ee5d4c1eb10a2eaa.zip |
Enable WIN32 compilation of libpq.
Diffstat (limited to 'src/interfaces/libpq/fe-print.c')
-rw-r--r-- | src/interfaces/libpq/fe-print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-print.c b/src/interfaces/libpq/fe-print.c index 0d97a3a84db..9151463fece 100644 --- a/src/interfaces/libpq/fe-print.c +++ b/src/interfaces/libpq/fe-print.c @@ -9,11 +9,10 @@ * didn't really belong there. * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.25 1999/07/19 02:27:16 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.26 1999/07/19 06:25:40 momjian Exp $ * *------------------------------------------------------------------------- */ -#include <unistd.h> #include <signal.h> #include "postgres.h" @@ -24,6 +23,7 @@ #ifdef WIN32 #include "win32.h" #else +#include <unistd.h> #include <sys/ioctl.h> #endif |