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/xdr_intXX_t.c | |
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/xdr_intXX_t.c')
-rw-r--r-- | sunrpc/xdr_intXX_t.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sunrpc/xdr_intXX_t.c b/sunrpc/xdr_intXX_t.c index d36d1623bc..9d2f92e10d 100644 --- a/sunrpc/xdr_intXX_t.c +++ b/sunrpc/xdr_intXX_t.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (c) 1998, 1999, 2000, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998. @@ -18,7 +18,14 @@ 02111-1307 USA. */ #include <rpc/types.h> + +/* We play dirty tricks with aliases. */ +#define xdr_quad_t Xdr_quad_t +#define xdr_u_quad_t Xdr_u_quad_t #include <rpc/xdr.h> +#undef xdr_quad_t +#undef xdr_u_quad_t + /* XDR 64bit integers */ bool_t @@ -47,6 +54,7 @@ xdr_int64_t (XDR *xdrs, int64_t *ip) return FALSE; } } +strong_alias (xdr_int64_t, xdr_quad_t) /* XDR 64bit unsigned integers */ bool_t @@ -75,6 +83,7 @@ xdr_uint64_t (XDR *xdrs, uint64_t *uip) return FALSE; } } +strong_alias (xdr_int64_t, xdr_u_quad_t) /* XDR 32bit integers */ bool_t |