From: Alejandro Colomar Date: Sun, 28 Feb 2021 00:48:06 +0000 (+0100) Subject: getaddrinfo_a.3: SYNOPSIS: Use 'restrict' in prototypes X-Git-Tag: man-pages-5.11~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79201b695eec6eea0e34d76e84a90872be92a9dc;p=thirdparty%2Fman-pages.git 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 Signed-off-by: Michael Kerrisk --- diff --git a/man3/getaddrinfo_a.3 b/man3/getaddrinfo_a.3 index 416904437d..0ddb8a76dd 100644 --- a/man3/getaddrinfo_a.3 +++ b/man3/getaddrinfo_a.3 @@ -36,13 +36,13 @@ network address and service translation .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include .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