diff options
author | pfg <pfg@FreeBSD.org> | 2012-09-02 22:23:23 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2012-09-02 22:23:23 +0000 |
commit | fb077b00b0a2455b2108feeb4f173ea2706f697c (patch) | |
tree | bfbbe261693a70827db52029f30608eb237280cd /include/rpc/pmap_rmt.h | |
parent | 97adc861835d3d63fcfabaf559955e91c3bdd543 (diff) | |
download | FreeBSD-src-fb077b00b0a2455b2108feeb4f173ea2706f697c.zip FreeBSD-src-fb077b00b0a2455b2108feeb4f173ea2706f697c.tar.gz |
Revert r240060: (Partial)
__BEGIN_DECLS and __END_DECLS in cdefs.h take care of the
__cplusplus mangling issues so most of the definitions
were redundant.
In the few places where they were not redundant we should
use BSD style instead of the guards used upstream.
Reported by: Yuri Pankov
Diffstat (limited to 'include/rpc/pmap_rmt.h')
-rw-r--r-- | include/rpc/pmap_rmt.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/rpc/pmap_rmt.h b/include/rpc/pmap_rmt.h index 9d5c00c..5c08066 100644 --- a/include/rpc/pmap_rmt.h +++ b/include/rpc/pmap_rmt.h @@ -44,10 +44,6 @@ #define _RPC_PMAP_RMT_H #include <sys/cdefs.h> -#ifdef __cplusplus -extern "C" { -#endif - struct rmtcallargs { u_long prog, vers, proc, arglen; caddr_t args_ptr; @@ -66,8 +62,4 @@ extern bool_t xdr_rmtcall_args(XDR *, struct rmtcallargs *); extern bool_t xdr_rmtcallres(XDR *, struct rmtcallres *); __END_DECLS -#ifdef __cplusplus -} -#endif - #endif /* !_RPC_PMAP_RMT_H */ |