diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-11-24 01:32:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-11-24 01:32:48 +0000 |
commit | 7a1b72f6ef9fc93f1c0d3f0f3ce83554e37f7f39 (patch) | |
tree | d6673cdec83b40a36b6060a4503cf9184ef0e327 /src | |
parent | a36436ea3f402293bc5484b83823eed8d6a8dfc3 (diff) | |
download | postgresql-7a1b72f6ef9fc93f1c0d3f0f3ce83554e37f7f39.tar.gz postgresql-7a1b72f6ef9fc93f1c0d3f0f3ce83554e37f7f39.zip |
Borland CC 5.5.1 needs ssize_t, per cnliou9@fastmail.fm.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/win32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index e7ddd9e288a..10abc51ab32 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.79 2007/11/15 21:14:44 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.80 2007/11/24 01:32:48 momjian Exp $ */ #if defined(_MSC_VER) || defined(__BORLANDC__) #define WIN32_ONLY_COMPILER @@ -280,8 +280,8 @@ extern void _dosmaperr(unsigned long); /* Things that exist in MingW headers, but need to be added to MSVC */ #ifdef WIN32_ONLY_COMPILER -#ifndef __BORLANDC__ typedef long ssize_t; +#ifndef __BORLANDC__ typedef unsigned short mode_t; #endif |