From 9d6ebd15f310a353fbaec116479145033d0ca8a0 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 8 Jan 2006 11:19:44 +0000 Subject: kill off two more relocs --- libc/inet/rpc/rpc_prot.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libc') 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}}; /* -- cgit v1.2.3