diff options
Diffstat (limited to 'newlib/libc/reent/writer.c')
-rw-r--r-- | newlib/libc/reent/writer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/reent/writer.c b/newlib/libc/reent/writer.c index 7ede74f..128f7f7 100644 --- a/newlib/libc/reent/writer.c +++ b/newlib/libc/reent/writer.c @@ -46,11 +46,11 @@ DESCRIPTION */ _ssize_t -_write_r (ptr, fd, buf, cnt) - struct _reent *ptr; - int fd; - _CONST _PTR buf; - size_t cnt; +_DEFUN (_write_r, (ptr, fd, buf, cnt), + struct _reent *ptr _AND + int fd _AND + _CONST _PTR buf _AND + size_t cnt) { _ssize_t ret; |