Forward-declare `struct rpc_err' so that it isn't declared inside a

prototype when <rpc/clnt.h> isn't included.
This commit is contained in:
Bruce Evans 1995-03-12 12:13:37 +00:00
parent 9cfb8f7ee9
commit 97f567ae95
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7027

View File

@ -28,7 +28,7 @@
*
* from: @(#)rpc_msg.h 1.7 86/07/16 SMI
* from: @(#)rpc_msg.h 2.1 88/07/29 4.0 RPCSRC
* $Id: rpc_msg.h,v 1.1 1993/10/27 05:40:49 paul Exp $
* $Id: rpc_msg.h,v 1.2 1994/08/07 18:40:59 wollman Exp $
*/
/*
@ -189,6 +189,7 @@ extern bool_t xdr_replymsg __P((XDR *, struct rpc_msg *));
* struct rpc_msg *msg;
* struct rpc_err *error;
*/
struct rpc_err;
extern void _seterr_reply __P((struct rpc_msg *, struct rpc_err *));
__END_DECLS