glibc uses 'restrict' in strsep(). Let's use it here too. .../glibc$ grep_glibc_prototype strsep string/string.h:455: extern char *strsep (char **__restrict __stringp, const char *__restrict __delim) __THROW __nonnull ((1, 2)); .../glibc$ Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/strsep.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man3/strsep.3 b/man3/strsep.3 index 9d40e208b..91c379bdb 100644 --- a/man3/strsep.3 +++ b/man3/strsep.3 @@ -37,7 +37,7 @@ strsep \- extract token from string .nf .B #include <string.h> .PP -.BI "char *strsep(char **" stringp ", const char *" delim ); +.BI "char *strsep(char **restrict " stringp ", const char *restrict " delim ); .fi .PP .RS -4 -- 2.30.1.721.g45526154a5