diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-10-05 15:09:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-10-05 15:09:41 +0000 |
commit | a992bd8c6d23c0dbe3f43a8051e41ed8da0a5ec0 (patch) | |
tree | 1f16a28e12ea10edb78250ae9a5963d528694513 | |
parent | 4d47db363bd42097b4ca96c28278e5d4a041dbca (diff) | |
download | postgresql-a992bd8c6d23c0dbe3f43a8051e41ed8da0a5ec0.tar.gz postgresql-a992bd8c6d23c0dbe3f43a8051e41ed8da0a5ec0.zip |
Another tightening of Win32 typedefs.
-rw-r--r-- | src/interfaces/libpq/libpq-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index e32dec920c9..e38e78b06f4 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.92 2004/08/30 02:54:41 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.93 2004/10/05 15:09:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -33,7 +33,7 @@ #include <pthread.h> #endif -#if defined(WIN32) && (!defined(ssize_t)) +#ifdef WIN32_CLIENT_ONLY typedef int ssize_t; /* ssize_t doesn't exist in VC (at least * not VC6) */ #endif |