See the non-wide equivalent functions.
Signed-off-by: Alejandro Colomar <alx@kernel.org>
.B #include <wchar.h>
.P
.BI "wchar_t *wcpncpy(wchar_t " dest "[restrict ." n ],
-.BI " const wchar_t " src "[restrict ." n ],
+.BI " const wchar_t *restrict " src ,
.BI " size_t " n );
.fi
.P
.nf
.B #include <wchar.h>
.P
-.BI "wchar_t *wcsncat(wchar_t " dest "[restrict ." n ],
+.BI "wchar_t *wcsncat(wchar_t *restrict " dest ,
.BI " const wchar_t " src "[restrict ." n ],
.BI " size_t " n );
.fi
.B #include <wchar.h>
.P
.BI "wchar_t *wcsncpy(wchar_t " dest "[restrict ." n ],
-.BI " const wchar_t " src "[restrict ." n ],
+.BI " const wchar_t *restrict " src ,
.BI " size_t " n );
.fi
.SH DESCRIPTION