diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-07 02:42:58 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-07 02:42:58 +0000 |
commit | 746d0019f275acc0d3752b54e8ae1930a2f5fa3c (patch) | |
tree | 1e6f3a5437edfaffb778c1d7ef0f8b4fe93adf4f /libc/inet/rpc/rpc_callmsg.c | |
parent | 21237865a7b9e4898516678382a98163a9248592 (diff) |
No more *xdr* jump relocations
Diffstat (limited to 'libc/inet/rpc/rpc_callmsg.c')
-rw-r--r-- | libc/inet/rpc/rpc_callmsg.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/libc/inet/rpc/rpc_callmsg.c b/libc/inet/rpc/rpc_callmsg.c index 8934eed91..6368e5920 100644 --- a/libc/inet/rpc/rpc_callmsg.c +++ b/libc/inet/rpc/rpc_callmsg.c @@ -38,6 +38,12 @@ static char sccsid[] = "@(#)rpc_callmsg.c 1.4 87/08/11 Copyr 1984 Sun Micro"; * */ +#define xdr_enum __xdr_enum +#define xdr_opaque __xdr_opaque +#define xdr_u_int __xdr_u_int +#define xdr_u_long __xdr_u_long +#define xdr_opaque_auth __xdr_opaque_auth + #define __FORCE_GLIBC #include <features.h> @@ -48,8 +54,8 @@ static char sccsid[] = "@(#)rpc_callmsg.c 1.4 87/08/11 Copyr 1984 Sun Micro"; /* * XDR a call message */ -bool_t -xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg) +bool_t attribute_hidden +__xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg) { int32_t *buf; struct opaque_auth *oa; @@ -204,3 +210,4 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg) return xdr_opaque_auth (xdrs, &(cmsg->rm_call.cb_verf)); return FALSE; } +strong_alias(__xdr_callmsg,xdr_callmsg) |