From: drepper Date: Mon, 6 Oct 1997 00:36:23 +0000 (+0000) Subject: Change to use _IO_fpos64_t. X-Git-Tag: libc-ud-971011~252 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=44b28b444a7d4dfcbf3c9a826d84b5b9bc91dd6a Change to use _IO_fpos64_t. --- diff --git a/libio/ioseekoff.c b/libio/ioseekoff.c index b1c4729b3d..13086ee912 100644 --- a/libio/ioseekoff.c +++ b/libio/ioseekoff.c @@ -25,14 +25,14 @@ #include -_IO_pos_t +_IO_fpos64_t _IO_seekoff (fp, offset, dir, mode) _IO_FILE *fp; - _IO_off_t offset; + _IO_off64_t offset; int dir; int mode; { - _IO_pos_t retval; + _IO_fpos64_t retval; /* If we have a backup buffer, get rid of it, since the __seekoff callback may not know to do the right thing about it.