X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Ffgetws.c;h=195cb4355a14b10b05b0b50cf293456b5b7b4f75;hp=2e76b56547c7a8df43c913825c8ce7e43027cb4d;hb=HEAD;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/src/stdio/fgetws.c b/src/stdio/fgetws.c index 2e76b565..195cb435 100644 --- a/src/stdio/fgetws.c +++ b/src/stdio/fgetws.c @@ -1,8 +1,9 @@ #include "stdio_impl.h" +#include 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;