From: Steve Hay Date: Fri, 24 Jun 2005 14:38:05 +0000 (+0000) Subject: Fix typo in win32.c X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=56460430dcb7e8cada68e2a7dcfb1495b75076d1;p=p5sagit%2Fp5-mst-13.2.git Fix typo in win32.c Doesn't fix bcc32 + USE_LARGE_FILES, though :-( p4raw-id: //depot/perl@24977 --- diff --git a/win32/win32.c b/win32/win32.c index ab653c4..43c2d0b 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2597,7 +2597,7 @@ DllExport Off_t win32_ftell(FILE *pf) { #if defined(WIN64) || defined(USE_LARGE_FILES) -#if defined(__BORLAND__) /* buk */ +#if defined(__BORLANDC__) /* buk */ return win32_tell( fileno( pf ) ); #else fpos_t pos;