patch-src_rpc_com_h 779 B

12345678910111213141516171819202122232425262728293031
  1. --- libtirpc-0.2.3.orig/src/rpc_com.h 2013-02-13 16:13:59.000000000 +0100
  2. +++ libtirpc-0.2.3/src/rpc_com.h 2014-03-22 13:20:53.000000000 +0100
  3. @@ -40,7 +40,6 @@
  4. #ifndef _TIRPC_RPCCOM_H
  5. #define _TIRPC_RPCCOM_H
  6. -#include <sys/cdefs.h>
  7. /* #pragma ident "@(#)rpc_com.h 1.11 93/07/05 SMI" */
  8. @@ -54,7 +53,9 @@
  9. #define __RPC_GETXID(now) ((u_int32_t)getpid() ^ (u_int32_t)(now)->tv_sec ^ \
  10. (u_int32_t)(now)->tv_usec)
  11. -__BEGIN_DECLS
  12. +#ifdef __cplusplus
  13. +extern "C" {
  14. +#endif
  15. extern u_int __rpc_get_a_size(int);
  16. extern int __rpc_dtbsize(void);
  17. extern struct netconfig * __rpcgettp(int);
  18. @@ -90,6 +91,8 @@ void __xprt_set_raddr(SVCXPRT *, const s
  19. SVCXPRT **__svc_xports;
  20. int __svc_maxrec;
  21. -__END_DECLS
  22. +#ifdef __cplusplus
  23. +}
  24. +#endif
  25. #endif /* _TIRPC_RPCCOM_H */