diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-18 02:08:12 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-18 02:08:12 +0000 |
commit | 4a9d61009ab1e3df94ef4ecfcc453c9ce73010a4 (patch) | |
tree | 5bb486e54adfa3de89ac2448576a0f0d61f72722 /win32/perlhost.h | |
parent | 87755fa7011638e8ad4f4be9619e28e676b74d12 (diff) | |
download | perl-4a9d61009ab1e3df94ef4ecfcc453c9ce73010a4.tar.gz |
windows: support for large files
note that this change will break binary compatibility with the
default 5.8.0 build options; nevertheless I think it is worth
having in 5.8.1 (people who want the compatibility can disable
the option in the makefile)
p4raw-id: //depot/perl@18327
Diffstat (limited to 'win32/perlhost.h')
-rw-r--r-- | win32/perlhost.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h index 7926142954..b68f5c771b 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -939,9 +939,9 @@ PerlLIOChown(struct IPerlLIO* piPerl, const char *filename, uid_t owner, gid_t g } int -PerlLIOChsize(struct IPerlLIO* piPerl, int handle, long size) +PerlLIOChsize(struct IPerlLIO* piPerl, int handle, Off_t size) { - return chsize(handle, size); + return win32_chsize(handle, size); } int |