Both POSIX and glibc use 'restrict' for fgetws(). Let's use it here too. glibc: wcsmbs/wchar.h:758: wchar_t *fgetws (wchar_t *restrict ws, int n, FILE *restrict stream); Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/fgetws.3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/man3/fgetws.3 b/man3/fgetws.3 index 4ce0fe79b..652507937 100644 --- a/man3/fgetws.3 +++ b/man3/fgetws.3 @@ -22,7 +22,8 @@ fgetws \- read a wide-character string from a FILE stream .nf .B #include <wchar.h> .PP -.BI "wchar_t *fgetws(wchar_t *" ws ", int " n ", FILE *" stream ); +.BI "wchar_t *fgetws(wchar_t *restrict " ws ", int " n \ +", FILE *restrict " stream ); .fi .SH DESCRIPTION The -- 2.30.1.721.g45526154a5