diff options
author | bde <bde@FreeBSD.org> | 2001-10-03 16:53:59 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-03 16:53:59 +0000 |
commit | fef75fe036a35ecbb4f6b49e7f6f9d6f78af4c56 (patch) | |
tree | 82fe39729f8ff349ec7b7eda2e5eb78bc0dc5f22 /lib/libc/xdr/xdr.3 | |
parent | 8ef25d0d0b94fbe0d7301008abbb57838acb1516 (diff) | |
download | FreeBSD-src-fef75fe036a35ecbb4f6b49e7f6f9d6f78af4c56.zip FreeBSD-src-fef75fe036a35ecbb4f6b49e7f6f9d6f78af4c56.tar.gz |
Fixed various type errors in synopsis.
Diffstat (limited to 'lib/libc/xdr/xdr.3')
-rw-r--r-- | lib/libc/xdr/xdr.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/xdr/xdr.3 b/lib/libc/xdr/xdr.3 index 96f6fc4..1b105e5 100644 --- a/lib/libc/xdr/xdr.3 +++ b/lib/libc/xdr/xdr.3 @@ -252,7 +252,7 @@ stream instances need not guarantee this. .Ft int .Xc .It Xo -.Fn xdr_hyper "XDR *xdrs" "longlong_t *llp" +.Fn xdr_hyper "XDR *xdrs" "quad_t *llp" .Xc A filter primitive that translates between ANSI C .Vt "long long" @@ -313,7 +313,7 @@ This routine returns one if it succeeds, zero otherwise. .Ft int .Xc .It Xo -.Fn xdr_longlong_t "XDR *xdrs" "longlong_t *llp" +.Fn xdr_longlong_t "XDR *xdrs" "quad_t *llp" .Xc A filter primitive that translates between ANSI C .Vt "long long" @@ -627,7 +627,7 @@ This routine returns one if it succeeds, zero otherwise. .Ft int .Xc .It Xo -.Fn xdr_u_hyper "XDR *xdrs" "u_longlong_t *ullp" +.Fn xdr_u_hyper "XDR *xdrs" "u_quad_t *ullp" .Xc A filter primitive that translates between .Vt unsigned @@ -664,7 +664,7 @@ This routine returns one if it succeeds, zero otherwise. .Ft int .Xc .It Xo -.Fn xdr_u_longlong_t "XDR *xdrs" "u_longlong_t *ullp" +.Fn xdr_u_longlong_t "XDR *xdrs" "u_quad_t *ullp" .Xc A filter primitive that translates between .Vt unsigned @@ -691,10 +691,10 @@ This routine returns one if it succeeds, zero otherwise. .It Xo .Fo xdr_union .Fa "XDR *xdrs" -.Fa "int *dscmp" +.Fa "enum_t *dscmp" .Fa "char *unp" -.Fa "struct xdr_discrim *choices" -.Fa "bool_t \*(lp*defaultarm\*(rp\*(lp\*(rp" +.Fa "const struct xdr_discrim *choices" +.Fa "xdrproc_t defaultarm" .Fc .Xc .Pp |