summaryrefslogtreecommitdiff
path: root/win32/perlhost.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2002-12-18 02:08:12 +0000
committerGurusamy Sarathy <gsar@cpan.org>2002-12-18 02:08:12 +0000
commit4a9d61009ab1e3df94ef4ecfcc453c9ce73010a4 (patch)
tree5bb486e54adfa3de89ac2448576a0f0d61f72722 /win32/perlhost.h
parent87755fa7011638e8ad4f4be9619e28e676b74d12 (diff)
downloadperl-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.h4
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