about summary refs log tree commit diff
path: root/include/rpc
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-06 01:23:20 +0000
committerRoland McGrath <roland@gnu.org>2002-08-06 01:23:20 +0000
commitcd4c174b680666cd27407ca5cd972e77cb772fff (patch)
treee7fccbaf301b21eb4150c7c685eae57192e935ef /include/rpc
parentf884de5be9f507f635acea32b127d0ba3985d59f (diff)
downloadglibc-cd4c174b680666cd27407ca5cd972e77cb772fff.tar.gz
glibc-cd4c174b680666cd27407ca5cd972e77cb772fff.tar.xz
glibc-cd4c174b680666cd27407ca5cd972e77cb772fff.zip
2002-08-05 Roland McGrath <roland@redhat.com>
	* include/rpc/svc.h: Use libc_hidden_proto for xprt_register,
	xprt_unregister.
	* sunrpc/svc.c: Add libc_hidden_def.
	* include/rpc/pmap_clnt.h: Use libc_hidden_proto for pmap_getport,
	pmap_set, pmap_unset.
	* sunrpc/pmap_clnt.c: Add libc_hidden_def.
	* sunrpc/pm_getport.c: Likewise.
	* include/rpc/auth_des.h: Use libc_hidden_proto for getpublickey.
	* sunrpc/publickey.c: Add libc_hidden_def.
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/auth_des.h2
-rw-r--r--include/rpc/pmap_clnt.h9
-rw-r--r--include/rpc/svc.h3
3 files changed, 13 insertions, 1 deletions
diff --git a/include/rpc/auth_des.h b/include/rpc/auth_des.h
index 014b30ca11..4cacffa95b 100644
--- a/include/rpc/auth_des.h
+++ b/include/rpc/auth_des.h
@@ -2,6 +2,8 @@
 
 #include <sunrpc/rpc/auth_des.h>
 
+libc_hidden_proto (getpublickey)
+
 extern bool_t xdr_authdes_cred (XDR *xdrs, struct authdes_cred *cred);
 extern bool_t xdr_authdes_verf (register XDR *xdrs,
 				register struct authdes_verf *verf);
diff --git a/include/rpc/pmap_clnt.h b/include/rpc/pmap_clnt.h
index dfe537c96f..2d02ff2096 100644
--- a/include/rpc/pmap_clnt.h
+++ b/include/rpc/pmap_clnt.h
@@ -1 +1,8 @@
-#include <sunrpc/rpc/pmap_clnt.h>
+#ifndef _RPC_PMAP_CLNT_H
+# include <sunrpc/rpc/pmap_clnt.h>
+
+libc_hidden_proto (pmap_getport)
+libc_hidden_proto (pmap_set)
+libc_hidden_proto (pmap_unset)
+
+#endif
diff --git a/include/rpc/svc.h b/include/rpc/svc.h
index 063e6f3976..77f8e9295e 100644
--- a/include/rpc/svc.h
+++ b/include/rpc/svc.h
@@ -1,6 +1,9 @@
 #ifndef _RPC_SVC_H
 #include <sunrpc/rpc/svc.h>
 
+libc_hidden_proto (xprt_register)
+libc_hidden_proto (xprt_unregister)
+
 /* Now define the internal interfaces.  */
 extern int registerrpc (u_long prognum, u_long versnum, u_long procnum,
 			char *(*progname) (char *), xdrproc_t inproc,