diff options
author | eivind <eivind@FreeBSD.org> | 1997-05-07 02:27:18 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-05-07 02:27:18 +0000 |
commit | 379be4bd6976e0978a3a320598eacd98708ee1f2 (patch) | |
tree | 7257f42f700a2e7b01b98d56a31940970b0d54ef /include/rpc/clnt.h | |
parent | 173bd2da2e16e77a80909cbb1d6a34c497014e8d (diff) | |
download | FreeBSD-src-379be4bd6976e0978a3a320598eacd98708ee1f2.zip FreeBSD-src-379be4bd6976e0978a3a320598eacd98708ee1f2.tar.gz |
Make a lot of include-files self-contained. I excluded the patches changing
int's to gid_t and uid_t - should I commit these, too?
Closes PR misc/2625.
Submitted by: Julian Assange <proff@iq.org>
Diffstat (limited to 'include/rpc/clnt.h')
-rw-r--r-- | include/rpc/clnt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/rpc/clnt.h b/include/rpc/clnt.h index 773aa95..24066f9d 100644 --- a/include/rpc/clnt.h +++ b/include/rpc/clnt.h @@ -28,7 +28,7 @@ * * from: @(#)clnt.h 1.31 88/02/08 SMI * from: @(#)clnt.h 2.1 88/07/29 4.0 RPCSRC - * $Id$ + * $Id: clnt.h,v 1.7 1997/02/23 09:17:22 peter Exp $ */ /* @@ -40,6 +40,9 @@ #ifndef _RPC_CLNT_H_ #define _RPC_CLNT_H_ #include <sys/cdefs.h> +#include <rpc/types.h> +#include <rpc/xdr.h> +#include <rpc/auth.h> /* * Rpc calls return an enum clnt_stat. This should be looked at more, |