summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorScott Henry <scotth@sgi.com>1998-09-29 10:38:46 -0700
committerGurusamy Sarathy <gsar@cpan.org>1998-10-02 04:10:47 +0000
commit97cc44eb3354a060109750a447392fc7db9722c4 (patch)
treed3dfbb7a94824b097376e66d5469d9d49ab474c1 /doio.c
parente44f695ee9be4f523999589b52c7c8e9ddc1bed9 (diff)
downloadperl-97cc44eb3354a060109750a447392fc7db9722c4.tar.gz
use Off_t to permit 64-bit seek()
Date: 29 Sep 1998 17:38:46 -0700 Message-ID: <yd8lnn2zb6x.fsf_-_@hoshi.engr.sgi.com> Subject: Re: [PATCH] 5.005_02: Configure "Massive Attack" -- Date: 28 Sep 1998 18:55:37 -0700 Message-ID: <yd8ogrz1y3q.fsf@hoshi.engr.sgi.com> Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack" p4raw-id: //depot/perl@1915
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/doio.c b/doio.c
index 72b334cd17..485dfaa91d 100644
--- a/doio.c
+++ b/doio.c
@@ -754,8 +754,8 @@ do_seek(GV *gv, Off_t pos, int whence)
return FALSE;
}
-long
-do_sysseek(GV *gv, long int pos, int whence)
+Off_t
+do_sysseek(GV *gv, Off_t pos, int whence)
{
register IO *io;
register PerlIO *fp;