diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-24 14:38:05 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-24 14:38:05 +0000 |
commit | 56460430dcb7e8cada68e2a7dcfb1495b75076d1 (patch) | |
tree | c1a07bfe4a2675589ca1fe4549e3b1d048cd3c38 /win32/win32.c | |
parent | 41e4abd8e288135291940b1765c485a707618c20 (diff) | |
download | perl-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.c | 2 |
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; |