summaryrefslogtreecommitdiffstats
path: root/newlib/libc/stdio/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/fprintf.c')
-rw-r--r--newlib/libc/stdio/fprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fprintf.c b/newlib/libc/stdio/fprintf.c
index a3c089479..5ea2fd006 100644
--- a/newlib/libc/stdio/fprintf.c
+++ b/newlib/libc/stdio/fprintf.c
@@ -24,8 +24,8 @@
int
_DEFUN(_fprintf_r, (ptr, fp, fmt),
struct _reent *ptr _AND
- FILE *fp _AND
- const char *fmt _DOTS)
+ FILE *__restrict fp _AND
+ const char *__restrict fmt _DOTS)
{
int ret;
va_list ap;
@@ -40,8 +40,8 @@ _DEFUN(_fprintf_r, (ptr, fp, fmt),
int
_DEFUN(fprintf, (fp, fmt),
- FILE *fp _AND
- const char *fmt _DOTS)
+ FILE *__restrict fp _AND
+ const char *__restrict fmt _DOTS)
{
int ret;
va_list ap;