xdr.3: SYNOPSIS: Fix prototype types

Use the same types glibc uses, and add a missing 'const'.

.../glibc$ grep_glibc_prototype xdr_union
sunrpc/rpc/xdr.h:315:
extern bool_t xdr_union (XDR *__xdrs, enum_t *__dscmp, char *__unp,
			 const struct xdr_discrim *__choices,
			 xdrproc_t __dfault) __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-05-09 23:39:19 +02:00 committed by Michael Kerrisk
parent 3126777905
commit 2ce1caae32
1 changed files with 2 additions and 2 deletions

View File

@ -460,8 +460,8 @@ integers and their external representations.
This routine returns one if it succeeds, zero otherwise.
.PP
.nf
.BI "bool_t xdr_union(XDR *" xdrs ", int *" dscmp ", char *" unp ,
.BI " struct xdr_discrim *" choices ,
.BI "bool_t xdr_union(XDR *" xdrs ", enum_t *" dscmp ", char *" unp ,
.BI " const struct xdr_discrim *" choices ,
.BI " xdrproc_t " defaultarm "); /* may equal NULL */"
.fi
.IP