summaryrefslogtreecommitdiffstats
path: root/include/rpc/rpcent.h
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2012-09-02 21:04:40 +0000
committerpfg <pfg@FreeBSD.org>2012-09-02 21:04:40 +0000
commit97adc861835d3d63fcfabaf559955e91c3bdd543 (patch)
tree15afb466c1616ef4f4e63a7ec1b8cc2128b9438c /include/rpc/rpcent.h
parent70630d664ef4716dd247b13bdb90a3e2c77aef78 (diff)
downloadFreeBSD-src-97adc861835d3d63fcfabaf559955e91c3bdd543.zip
FreeBSD-src-97adc861835d3d63fcfabaf559955e91c3bdd543.tar.gz
Fix RPC headers for C++
C++ mangling will cause trouble with variables like __rpc_xdr in xdr.h so rename this to XDR. While here add proper C++ guards to RPC headers. PR: 137443 MFC after: 2 weeks
Diffstat (limited to 'include/rpc/rpcent.h')
-rw-r--r--include/rpc/rpcent.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/rpc/rpcent.h b/include/rpc/rpcent.h
index 876b488..0aea015 100644
--- a/include/rpc/rpcent.h
+++ b/include/rpc/rpcent.h
@@ -45,6 +45,9 @@
/* #pragma ident "@(#)rpcent.h 1.13 94/04/25 SMI" */
/* @(#)rpcent.h 1.1 88/12/06 SMI */
+#ifdef __cplusplus
+extern "C" {
+#endif
struct rpcent {
char *r_name; /* name of server for this rpc program */
@@ -64,4 +67,8 @@ extern void setrpcent(int);
extern void endrpcent(void);
__END_DECLS
+#ifdef __cplusplus
+}
+#endif
+
#endif /* !_RPC_CENT_H */
OpenPOWER on IntegriCloud