diff options
Diffstat (limited to 'newlib/libc/stdio/dprintf.c')
-rw-r--r-- | newlib/libc/stdio/dprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdio/dprintf.c b/newlib/libc/stdio/dprintf.c index 7389eef..831fe20 100644 --- a/newlib/libc/stdio/dprintf.c +++ b/newlib/libc/stdio/dprintf.c @@ -54,8 +54,8 @@ Supporting OS subroutines required: <<sbrk>>, <<write>>. int _DEFUN(_dprintf_r, (ptr, fd, format), - struct _reent *ptr _AND - int fd _AND + struct _reent *ptr, + int fd, const char *__restrict format _DOTS) { va_list ap; @@ -77,7 +77,7 @@ _EXFUN(_diprintf_r, (struct _reent *, int, const char *, ...) int _DEFUN(dprintf, (fd, format), - int fd _AND + int fd, const char *__restrict format _DOTS) { va_list ap; |