summaryrefslogtreecommitdiff
path: root/src/stdio/fgetws.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fgetws.c')
-rw-r--r--src/stdio/fgetws.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fgetws.c b/src/stdio/fgetws.c
index 2e76b565..fab9bd0f 100644
--- a/src/stdio/fgetws.c
+++ b/src/stdio/fgetws.c
@@ -2,7 +2,7 @@
wint_t __fgetwc_unlocked(FILE *);
-wchar_t *fgetws(wchar_t *s, int n, FILE *f)
+wchar_t *fgetws(wchar_t *restrict s, int n, FILE *restrict f)
{
wchar_t *p = s;