1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

Enable WIN32 compilation of libpq.

This commit is contained in:
Bruce Momjian
1999-07-19 06:25:40 +00:00
parent bf98a4656b
commit e259780b13
7 changed files with 18 additions and 15 deletions

View File

@ -7,12 +7,11 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.23 1999/07/19 02:45:43 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.24 1999/07/19 06:25:39 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
@ -23,6 +22,8 @@
#ifdef WIN32
#include "win32.h"
#include "io.h"
#else
#include <unistd.h>
#endif
#include "libpq/libpq-fs.h" /* must come after sys/stat.h */