mempcpy.3: SYNOPSIS: Use 'restrict' in prototypes

glibc uses 'restrict' in mempcpy(), wmempcpy().
Let's use it here too.

.../glibc$ grep_glibc_prototype mempcpy
string/string.h:384:
extern void *mempcpy (void *__restrict __dest,
		      const void *__restrict __src, size_t __n)
     __THROW __nonnull ((1, 2));
.../glibc$ grep_glibc_prototype wmempcpy
wcsmbs/wchar.h:276:
extern wchar_t *wmempcpy (wchar_t *__restrict __s1,
			  const wchar_t *__restrict __s2, size_t __n)
     __THROW;
.../glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-03-06 00:51:00 +01:00 committed by Michael Kerrisk
parent 855b2aeb8c
commit 34aec7f9e8
1 changed files with 5 additions and 2 deletions

View File

@ -15,12 +15,15 @@ mempcpy, wmempcpy \- copy memory area
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <string.h>
.PP
.BI "void *mempcpy(void *" dest ", const void *" src ", size_t " n );
.BI "void *mempcpy(void *restrict " dest ", const void *restrict " src \
", size_t " n );
.PP
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <wchar.h>
.PP
.BI "wchar_t *wmempcpy(wchar_t *" dest ", const wchar_t *" src ", size_t " n );
.BI "wchar_t *wmempcpy(wchar_t *restrict " dest \
", const wchar_t *restrict " src ,
.BI " size_t " n );
.fi
.SH DESCRIPTION
The