diff options
author | Roland McGrath <roland@gnu.org> | 1999-06-22 23:54:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-06-22 23:54:48 +0000 |
commit | 725af56f3adb3ea40cc4e58d1c9e0215e71186ba (patch) | |
tree | f7e0344392fa34fdd40ebade69002bec57e9c56b /sysdeps/mach/hurd/write.c | |
parent | de88ee7a6a16c0d871c21226caa587bb78b9fd81 (diff) | |
download | glibc-725af56f3adb3ea40cc4e58d1c9e0215e71186ba.tar.gz glibc-725af56f3adb3ea40cc4e58d1c9e0215e71186ba.tar.xz glibc-725af56f3adb3ea40cc4e58d1c9e0215e71186ba.zip |
1999-06-23 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/mach/hurd/read.c (__libc_read): Just call __pread with OFFSET argument of (off_t) -1. * sysdeps/mach/hurd/write.c (__libc_write): Just call __pwrite with OFFSET argument of (off_t) -1.
Diffstat (limited to 'sysdeps/mach/hurd/write.c')
-rw-r--r-- | sysdeps/mach/hurd/write.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/write.c b/sysdeps/mach/hurd/write.c index 7cd715e5a7..b019cf2023 100644 --- a/sysdeps/mach/hurd/write.c +++ b/sysdeps/mach/hurd/write.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 94, 95, 97, 98 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,97,98,99 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,8 +24,7 @@ ssize_t __libc_write (int fd, const void *buf, size_t nbytes) { - error_t err = HURD_FD_USE (fd, _hurd_fd_write (descriptor, buf, &nbytes)); - return err ? __hurd_dfail (fd, err) : nbytes; + return __pread (fd, buf, nbytes, (off_t) -1); } weak_alias (__libc_write, __write) |