Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/pwrite.c')
-rw-r--r--newlib/libc/sys/linux/pwrite.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/newlib/libc/sys/linux/pwrite.c b/newlib/libc/sys/linux/pwrite.c
index 239463e59..c2b79ad13 100644
--- a/newlib/libc/sys/linux/pwrite.c
+++ b/newlib/libc/sys/linux/pwrite.c
@@ -7,10 +7,10 @@
ssize_t
_DEFUN (_pwrite_r, (rptr, fd, buf, n, off),
- struct _reent *rptr _AND
- int fd _AND
- _CONST _PTR buf _AND
- size_t n _AND
+ struct _reent *rptr,
+ int fd,
+ _CONST _PTR buf,
+ size_t n,
off_t off)
{
off_t cur_pos;
@@ -34,9 +34,9 @@ _DEFUN (_pwrite_r, (rptr, fd, buf, n, off),
ssize_t
_DEFUN (__libc_pwrite, (fd, buf, n, off),
- int fd _AND
- _CONST _PTR buf _AND
- size_t n _AND
+ int fd,
+ _CONST _PTR buf,
+ size_t n,
off_t off)
{
return _pwrite_r (_REENT, fd, buf, n, off);