39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
commit 12129663ddc356aed44434aeda28ff1ce2dfc786
|
|
Author: Sandeep Josh <sdjres@yahoo.com>
|
|
Date: Thu Jan 22 12:34:19 2009 -0500
|
|
|
|
tirpc header file fixes for C++
|
|
|
|
Added a __THROW to a couple extern declarations.
|
|
|
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
|
|
|
diff --git a/tirpc/rpc/rpc.h b/tirpc/rpc/rpc.h
|
|
index 23e3197..f93479e 100644
|
|
--- a/tirpc/rpc/rpc.h
|
|
+++ b/tirpc/rpc/rpc.h
|
|
@@ -83,7 +83,7 @@
|
|
|
|
__BEGIN_DECLS
|
|
extern int get_myaddress(struct sockaddr_in *);
|
|
-extern int bindresvport(int, struct sockaddr_in *);
|
|
+extern int bindresvport(int, struct sockaddr_in *) __THROW;
|
|
extern int registerrpc(int, int, int, char *(*)(char [UDPMSGSIZE]),
|
|
xdrproc_t, xdrproc_t);
|
|
extern int callrpc(const char *, int, int, int, xdrproc_t, void *,
|
|
diff --git a/tirpc/rpc/rpcent.h b/tirpc/rpc/rpcent.h
|
|
index eff86aa..1cee74c 100644
|
|
--- a/tirpc/rpc/rpcent.h
|
|
+++ b/tirpc/rpc/rpcent.h
|
|
@@ -62,8 +62,8 @@ __BEGIN_DECLS
|
|
//extern struct rpcent *getrpcbyname(char *);
|
|
//extern struct rpcent *getrpcbynumber(int);
|
|
//extern struct rpcent *getrpcent(void);
|
|
-extern void setrpcent(int);
|
|
-extern void endrpcent(void);
|
|
+extern void setrpcent(int) __THROW;
|
|
+extern void endrpcent(void) __THROW;
|
|
__END_DECLS
|
|
|
|
#endif /* !_RPC_CENT_H */
|