1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +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

@@ -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"