diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:19:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:19:44 +0000 |
commit | 9d6ebd15f310a353fbaec116479145033d0ca8a0 (patch) | |
tree | 933f0027a29350b604be3d1af36a617cc2c1aab5 /libc/inet/rpc | |
parent | 7838decc7ad078517b51d2aedbc51ac9261881c0 (diff) |
kill off two more relocs
Diffstat (limited to 'libc/inet/rpc')
-rw-r--r-- | libc/inet/rpc/rpc_prot.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/inet/rpc/rpc_prot.c b/libc/inet/rpc/rpc_prot.c index afc1dccd1..ee6c03644 100644 --- a/libc/inet/rpc/rpc_prot.c +++ b/libc/inet/rpc/rpc_prot.c @@ -109,6 +109,7 @@ xdr_accepted_reply (XDR *xdrs, struct accepted_reply *ar) } return TRUE; /* TRUE => open ended set of problems */ } +hidden_strong_alias(xdr_accepted_reply,__xdr_accepted_reply) /* * XDR the MSG_DENIED part of a reply message union @@ -131,11 +132,12 @@ xdr_rejected_reply (XDR *xdrs, struct rejected_reply *rr) } return FALSE; } +hidden_strong_alias(xdr_rejected_reply,__xdr_rejected_reply) static const struct xdr_discrim reply_dscrm[3] = { - {(int) MSG_ACCEPTED, (xdrproc_t) xdr_accepted_reply}, - {(int) MSG_DENIED, (xdrproc_t) xdr_rejected_reply}, + {(int) MSG_ACCEPTED, (xdrproc_t) __xdr_accepted_reply}, + {(int) MSG_DENIED, (xdrproc_t) __xdr_rejected_reply}, {__dontcare__, NULL_xdrproc_t}}; /* |