diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-12-06 02:29:27 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-12-06 02:29:27 +0000 |
commit | f244c488fb7312933c24cae816bc4ce470d27840 (patch) | |
tree | dce1202b5d5f089a95b5e2418719b5aaad4a9828 /src/interfaces/libpq/win32.h | |
parent | dc68b9ec305fdf831b98a1d80b09753939fa4c59 (diff) |
Make Win32 build use our port/snprintf.c routines, instead of depending
on libintl which may or may not provide what we need. Make a few marginal
cleanups to ensure this works. Andrew Dunstan and Tom Lane.
Diffstat (limited to 'src/interfaces/libpq/win32.h')
-rw-r--r-- | src/interfaces/libpq/win32.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h index 14f1a7e09e4..f3c61c798ff 100644 --- a/src/interfaces/libpq/win32.h +++ b/src/interfaces/libpq/win32.h @@ -16,9 +16,6 @@ #define write(a,b,c) _write(a,b,c) #endif -#define vsnprintf(a,b,c,d) _vsnprintf(a,b,c,d) -#define snprintf _snprintf - #undef EAGAIN /* doesn't apply on sockets */ #undef EINTR #define EINTR WSAEINTR |