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

glibc uses 'restrict' in getaddrinfo_a().
Let's use it here too.

.../glibc$ grep_glibc_prototype getaddrinfo_a
resolv/netdb.h:690:
extern int getaddrinfo_a (int __mode, struct gaicb *__list[__restrict_arr],
			  int __ent, struct sigevent *__restrict __sig);
.../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-02-28 01:48:06 +01:00 committed by Michael Kerrisk
parent 854214715b
commit 79201b695e
1 changed files with 6 additions and 6 deletions

View File

@ -36,13 +36,13 @@ network address and service translation
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <netdb.h>
.PP
.BI "int getaddrinfo_a(int " "mode" ", struct gaicb *" "list[]" ,
.BI " int " "nitems" ", struct sigevent *" "sevp" );
.BI "int gai_suspend(const struct gaicb * const " "list[]" ", int " "nitems" ,
.BI " const struct timespec *" "timeout" );
.BI "int getaddrinfo_a(int " mode ", struct gaicb *" list [restrict],
.BI " int " nitems ", struct sigevent *restrict " sevp );
.BI "int gai_suspend(const struct gaicb *const " list "[], int " nitems ,
.BI " const struct timespec *" timeout );
.PP
.BI "int gai_error(struct gaicb *" "req" );
.BI "int gai_cancel(struct gaicb *" "req" );
.BI "int gai_error(struct gaicb *" req );
.BI "int gai_cancel(struct gaicb *" req );
.PP
Link with \fI\-lanl\fP.
.fi