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/backend/utils/mb/common.c | |
parent | bf98a4656b1cdb221218f00ee45674a55572034a (diff) | |
download | postgresql-e259780b1393184cc9dd83b2ee5d4c1eb10a2eaa.tar.gz postgresql-e259780b1393184cc9dd83b2ee5d4c1eb10a2eaa.zip |
Enable WIN32 compilation of libpq.
Diffstat (limited to 'src/backend/utils/mb/common.c')
-rw-r--r-- | src/backend/utils/mb/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/utils/mb/common.c b/src/backend/utils/mb/common.c index 0464f5cb872..33ef6398283 100644 --- a/src/backend/utils/mb/common.c +++ b/src/backend/utils/mb/common.c @@ -2,14 +2,15 @@ * This file contains some public functions * usable for both the backend and the frontend. * Tatsuo Ishii - * $Id: common.c,v 1.6 1999/07/19 02:27:07 momjian Exp $ */ + * $Id: common.c,v 1.7 1999/07/19 06:25:38 momjian Exp $ */ #include <stdlib.h> -#include <unistd.h> #include <string.h> #ifdef WIN32 #include "win32.h" +#else +#include <unistd.h> #endif #include "mb/pg_wchar.h" |