summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-06-24 14:38:05 +0000
committerSteve Hay <SteveHay@planit.com>2005-06-24 14:38:05 +0000
commit56460430dcb7e8cada68e2a7dcfb1495b75076d1 (patch)
treec1a07bfe4a2675589ca1fe4549e3b1d048cd3c38 /win32/win32.c
parent41e4abd8e288135291940b1765c485a707618c20 (diff)
downloadperl-56460430dcb7e8cada68e2a7dcfb1495b75076d1.tar.gz
Fix typo in win32.c
Doesn't fix bcc32 + USE_LARGE_FILES, though :-( p4raw-id: //depot/perl@24977
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index ab653c4d59..43c2d0b518 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;