diff options
Diffstat (limited to 'src/interfaces/libpq/libpq-int.h')
-rw-r--r-- | src/interfaces/libpq/libpq-int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index 47dbbb4af5f..019683ac265 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-int.h,v 1.73 2003/06/12 07:36:51 momjian Exp $ + * $Id: libpq-int.h,v 1.74 2003/06/14 17:49:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,6 +26,7 @@ #include <sys/time.h> #endif + #if defined(WIN32) && (!defined(ssize_t)) typedef int ssize_t; /* ssize_t doesn't exist in VC (atleast * not VC6) */ @@ -448,7 +449,7 @@ __attribute__((format_arg(1))); #define SOCK_STRERROR winsock_strerror #else #define SOCK_ERRNO errno -#define SOCK_STRERROR strerror +#define SOCK_STRERROR pqStrerror #endif #endif /* LIBPQ_INT_H */ |