* libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t.

This commit is contained in:
Corinna Vinschen
2003-03-09 22:10:14 +00:00
parent 2c440f9c1a
commit 150c2818b6
2 changed files with 6 additions and 2 deletions

View File

@@ -45,11 +45,11 @@ DESCRIPTION
<<errno>>.
*/
off_t
_off_t
_lseek_r (ptr, fd, pos, whence)
struct _reent *ptr;
int fd;
off_t pos;
_off_t pos;
int whence;
{
off_t ret;