From 7a1b72f6ef9fc93f1c0d3f0f3ce83554e37f7f39 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 24 Nov 2007 01:32:48 +0000 Subject: [PATCH] Borland CC 5.5.1 needs ssize_t, per cnliou9@fastmail.fm. --- src/include/port/win32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/port/win32.h b/src/include/port/win32.h index e7ddd9e288..10abc51ab3 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