diff options
Diffstat (limited to 'newlib/libc/stdio/vdprintf.c')
-rw-r--r-- | newlib/libc/stdio/vdprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/vdprintf.c b/newlib/libc/stdio/vdprintf.c index bfb19c95b..7e875ac32 100644 --- a/newlib/libc/stdio/vdprintf.c +++ b/newlib/libc/stdio/vdprintf.c @@ -16,7 +16,7 @@ int _DEFUN(_vdprintf_r, (ptr, fd, format, ap), struct _reent *ptr _AND int fd _AND - const char *format _AND + const char *__restrict format _AND va_list ap) { char *p; @@ -38,7 +38,7 @@ _DEFUN(_vdprintf_r, (ptr, fd, format, ap), int _DEFUN(vdprintf, (fd, format, ap), int fd _AND - const char *format _AND + const char *__restrict format _AND va_list ap) { return _vdprintf_r (_REENT, fd, format, ap); |