From 363bb6ef87951362e7ce97de7ab5b3c6eacf48d5 Mon Sep 17 00:00:00 2001 From: corinna Date: Sun, 9 Mar 2003 22:10:14 +0000 Subject: [PATCH] * libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t. --- newlib/ChangeLog | 4 ++++ newlib/libc/reent/lseekr.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index e600e2c216..001b5d8f6d 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,9 @@ 2003-03-09 Corinna Vinschen + * libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t. + +2003-03-09 Corinna Vinschen + * libc/include/sys/config.h: Define __CYGWIN_USE_BIG_TYPES__ for Cygwin. diff --git a/newlib/libc/reent/lseekr.c b/newlib/libc/reent/lseekr.c index ed8ba13ede..45a340a3df 100644 --- a/newlib/libc/reent/lseekr.c +++ b/newlib/libc/reent/lseekr.c @@ -45,11 +45,11 @@ DESCRIPTION <>. */ -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; -- 2.11.0