diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 03:02:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 03:02:24 +0000 |
commit | f20ba0323a35f5f751ed68e82cce7c4b5b3bc48f (patch) | |
tree | 6fa0a7d73a7b8f850f1853ec23ce33ed01e72a0f /sunrpc/rpc | |
parent | 9b904803cf2f6322543b831b35fc23cd181716b6 (diff) | |
download | glibc-f20ba0323a35f5f751ed68e82cce7c4b5b3bc48f.tar.gz glibc-f20ba0323a35f5f751ed68e82cce7c4b5b3bc48f.tar.xz glibc-f20ba0323a35f5f751ed68e82cce7c4b5b3bc48f.zip |
Update.
* sunrpc/xdr_intXX_t.c: Add xdr_quad_t and xdr_u_quad_t aliases. * sunrpc/rpc/xdr.h: Declare xdr_quad_t and xdr_u_quad_t. * sunrpc/Versions: Export xdr_quad_t and xdr_u_quad_t.
Diffstat (limited to 'sunrpc/rpc')
-rw-r--r-- | sunrpc/rpc/xdr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index 64ac42fc5b..ba9691d1af 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -303,6 +303,8 @@ extern bool_t xdr_int32_t (XDR *__xdrs, int32_t *__ip) __THROW; extern bool_t xdr_uint32_t (XDR *__xdrs, uint32_t *__up) __THROW; extern bool_t xdr_int64_t (XDR *__xdrs, int64_t *__ip) __THROW; extern bool_t xdr_uint64_t (XDR *__xdrs, uint64_t *__up) __THROW; +extern bool_t xdr_quad_t (XDR *__xdrs, quad_t *__ip) __THROW; +extern bool_t xdr_u_quad_t (XDR *__xdrs, u_quad_t *__up) __THROW; extern bool_t xdr_bool (XDR *__xdrs, bool_t *__bp) __THROW; extern bool_t xdr_enum (XDR *__xdrs, enum_t *__ep) __THROW; extern bool_t xdr_array (XDR * _xdrs, caddr_t *__addrp, u_int *__sizep, |