summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vscanf.c')
-rw-r--r--src/stdio/vscanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/vscanf.c b/src/stdio/vscanf.c
index 6f55b1c3..6901958a 100644
--- a/src/stdio/vscanf.c
+++ b/src/stdio/vscanf.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdarg.h>
-int vscanf(const char *fmt, va_list ap)
+int vscanf(const char *restrict fmt, va_list ap)
{
return vfscanf(stdin, fmt, ap);
}