summaryrefslogtreecommitdiffstats
path: root/newlib/libc/reent/lseekr.c
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2003-03-09 22:10:14 +0000
committerCorinna Vinschen <corinna@vinschen.de>2003-03-09 22:10:14 +0000
commit150c2818b6ee97ab19df7ce7435569a3d3fa0336 (patch)
tree0198151f91361db6a35cfe9d7a6e25e653a7dcb6 /newlib/libc/reent/lseekr.c
parent2c440f9c1af6be258d2d3b70e4f17950e1b99946 (diff)
downloadcygnal-150c2818b6ee97ab19df7ce7435569a3d3fa0336.tar.gz
cygnal-150c2818b6ee97ab19df7ce7435569a3d3fa0336.tar.bz2
cygnal-150c2818b6ee97ab19df7ce7435569a3d3fa0336.zip
* libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t.
Diffstat (limited to 'newlib/libc/reent/lseekr.c')
-rw-r--r--newlib/libc/reent/lseekr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/reent/lseekr.c b/newlib/libc/reent/lseekr.c
index ed8ba13ed..45a340a3d 100644
--- a/newlib/libc/reent/lseekr.c
+++ b/newlib/libc/reent/lseekr.c
@@ -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;