diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-07 00:50:06 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-07 00:50:06 +0000 |
commit | 21237865a7b9e4898516678382a98163a9248592 (patch) | |
tree | 26f66ceabe878c6d867046f5ae0f47e09b564493 /libc/inet/rpc/clnt_tcp.c | |
parent | dec40863edc983e258161516a57413659b7fcfb9 (diff) |
Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ...
Diffstat (limited to 'libc/inet/rpc/clnt_tcp.c')
-rw-r--r-- | libc/inet/rpc/clnt_tcp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/inet/rpc/clnt_tcp.c b/libc/inet/rpc/clnt_tcp.c index c04265d8f..99c5751eb 100644 --- a/libc/inet/rpc/clnt_tcp.c +++ b/libc/inet/rpc/clnt_tcp.c @@ -122,8 +122,8 @@ static struct clnt_ops tcp_ops = * NB: The rpch->cl_auth is set null authentication. Caller may wish to set this * something more useful. */ -CLIENT * -clnttcp_create (struct sockaddr_in *raddr, u_long prog, u_long vers, +CLIENT attribute_hidden * +__clnttcp_create (struct sockaddr_in *raddr, u_long prog, u_long vers, int *sockp, u_int sendsz, u_int recvsz) { CLIENT *h; @@ -239,6 +239,7 @@ fooy: mem_free ((caddr_t) h, sizeof (CLIENT)); return ((CLIENT *) NULL); } +strong_alias(__clnttcp_create,clnttcp_create) static enum clnt_stat clnttcp_call (h, proc, xdr_args, args_ptr, xdr_results, results_ptr, timeout) |