strxfrm.3: SYNOPSIS: Use 'restrict' in prototypes
commit78f627d840d274174e660a40c15cd36f6c2d61ad
authorAlejandro Colomar <alx.manpages@gmail.com>
Wed, 10 Mar 2021 18:31:49 +0000 (10 19:31 +0100)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Sun, 14 Mar 2021 20:40:45 +0000 (14 21:40 +0100)
tree72864c19b732d59cea2228f4176637a6fdae7249
parent891521ca8a7dcb9a9011bc8aa7c3d14abed57a97
strxfrm.3: SYNOPSIS: Use 'restrict' in prototypes

Both POSIX and glibc use 'restrict' in strxfrm().
Let's use it here too.

.../glibc$ grep_glibc_prototype strxfrm
string/string.h:150:
extern size_t strxfrm (char *__restrict __dest,
       const char *__restrict __src, size_t __n)
    __THROW __nonnull ((2)) __attr_access ((__write_only__, 1, 3));
.../glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man3/strxfrm.3