summaryrefslogtreecommitdiff
path: root/include/rpc/clnt.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-08-03 17:55:11 +0000
committerEric Andersen <andersen@codepoet.org>2000-08-03 17:55:11 +0000
commit12db3c625abd07bae2a9ed2dd63c8ebe70b82421 (patch)
treecb630c9cd35dd885f503d3cecc774c10697d2164 /include/rpc/clnt.h
parentf70b581e6b902d11abdf2b9645f1cb8a3f495591 (diff)
Make some of the rpc stuff compile
-Erik
Diffstat (limited to 'include/rpc/clnt.h')
-rw-r--r--include/rpc/clnt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/rpc/clnt.h b/include/rpc/clnt.h
index b3852927a..f98d4ccf0 100644
--- a/include/rpc/clnt.h
+++ b/include/rpc/clnt.h
@@ -133,17 +133,17 @@ typedef struct CLIENT CLIENT;
struct CLIENT {
AUTH *cl_auth; /* authenticator */
struct clnt_ops {
- enum clnt_stat (*cl_call) __PMT ((CLIENT *, u_long, xdrproc_t,
+ enum clnt_stat (*cl_call) __P ((CLIENT *, u_long, xdrproc_t,
caddr_t, xdrproc_t,
caddr_t, struct timeval));
/* call remote procedure */
- void (*cl_abort) __PMT ((void)); /* abort a call */
- void (*cl_geterr) __PMT ((CLIENT *, struct rpc_err *));
+ void (*cl_abort) __P ((void)); /* abort a call */
+ void (*cl_geterr) __P ((CLIENT *, struct rpc_err *));
/* get specific error code */
- bool_t (*cl_freeres) __PMT ((CLIENT *, xdrproc_t, caddr_t));
+ bool_t (*cl_freeres) __P ((CLIENT *, xdrproc_t, caddr_t));
/* frees results */
- void (*cl_destroy) __PMT ((CLIENT *)); /* destroy this structure */
- bool_t (*cl_control) __PMT ((CLIENT *, int, char *));
+ void (*cl_destroy) __P ((CLIENT *)); /* destroy this structure */
+ bool_t (*cl_control) __P ((CLIENT *, int, char *));
/* the ioctl() of rpc */
} *cl_ops;
caddr_t cl_private; /* private stuff */