diff options
Diffstat (limited to 'newlib/libc/reent/openr.c')
-rw-r--r-- | newlib/libc/reent/openr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/reent/openr.c b/newlib/libc/reent/openr.c index c77310394..35138c6de 100644 --- a/newlib/libc/reent/openr.c +++ b/newlib/libc/reent/openr.c @@ -47,11 +47,11 @@ DESCRIPTION */ int -_open_r (ptr, file, flags, mode) - struct _reent *ptr; - _CONST char *file; - int flags; - int mode; +_DEFUN (_open_r, (ptr, file, flags, mode), + struct _reent *ptr _AND + _CONST char *file _AND + int flags _AND + int mode) { int ret; |