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

glibc uses 'restrict' in getnetent_r(), getnetbyname_r(),
getnetbyaddr_r().
Let's use it here too.

.../glibc$ grep_glibc_prototype getnetent_r
resolv/netdb.h:235:
extern int getnetent_r (struct netent *__restrict __result_buf,
			char *__restrict __buf, size_t __buflen,
			struct netent **__restrict __result,
			int *__restrict __h_errnop);
.../glibc$ grep_glibc_prototype getnetbyname_r
resolv/netdb.h:246:
extern int getnetbyname_r (const char *__restrict __name,
			   struct netent *__restrict __result_buf,
			   char *__restrict __buf, size_t __buflen,
			   struct netent **__restrict __result,
			   int *__restrict __h_errnop);
.../glibc$ grep_glibc_prototype getnetbyaddr_r
resolv/netdb.h:240:
extern int getnetbyaddr_r (uint32_t __net, int __type,
			   struct netent *__restrict __result_buf,
			   char *__restrict __buf, size_t __buflen,
			   struct netent **__restrict __result,
			   int *__restrict __h_errnop);
.../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:15 +01:00 committed by Michael Kerrisk
parent ce73ed19b0
commit 0bbc1dec0e
1 changed files with 13 additions and 10 deletions

View File

@ -31,17 +31,20 @@ network entry (reentrant)
.nf
.B #include <netdb.h>
.PP
.BI "int getnetent_r(struct netent *" result_buf ", char *" buf ,
.BI " size_t " buflen ", struct netent **" result ,
.BI " int *" h_errnop );
.BI "int getnetbyname_r(const char *" name ,
.BI " struct netent *" result_buf ", char *" buf ,
.BI " size_t " buflen ", struct netent **" result ,
.BI " int *" h_errnop );
.BI "int getnetent_r(struct netent *restrict " result_buf ,
.BI " char *restrict " buf ", size_t " buflen ,
.BI " struct netent **restrict " result ,
.BI " int *restrict " h_errnop );
.BI "int getnetbyname_r(const char *restrict " name ,
.BI " struct netent *restrict " result_buf ,
.BI " char *restrict " buf ", size_t " buflen ,
.BI " struct netent **restrict " result ,
.BI " int *restrict " h_errnop );
.BI "int getnetbyaddr_r(uint32_t " net ", int " type ,
.BI " struct netent *" result_buf ", char *" buf ,
.BI " size_t " buflen ", struct netent **" result ,
.BI " int *" h_errnop );
.BI " struct netent *restrict " result_buf ,
.BI " char *restrict " buf ", size_t " buflen ,
.BI " struct netent **restrict " result ,
.BI " int *restrict " h_errnop );
.PP
.fi
.RS -4