Both POSIX and glibc use 'restrict' in fputws(). Let's use it here too. glibc: ============================= fputws wcsmbs/wchar.h:765: int fputws (const wchar_t *restrict ws, FILE *restrict stream); Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/fputws.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man3/fputws.3 b/man3/fputws.3 index 604c96038..7269353f7 100644 --- a/man3/fputws.3 +++ b/man3/fputws.3 @@ -20,7 +20,7 @@ fputws \- write a wide-character string to a FILE stream .nf .B #include <wchar.h> .PP -.BI "int fputws(const wchar_t *" ws ", FILE *" stream ); +.BI "int fputws(const wchar_t *restrict " ws ", FILE *restrict " stream ); .fi .SH DESCRIPTION The -- 2.30.1.721.g45526154a5