diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 |
commit | 1372519b1579b695b7c87b8fbbdc2c113e985474 (patch) | |
tree | 940c5b6971ca7a1e0ccd4772f07ad6694c595c70 /lib/libc/rpc/svc.c | |
parent | 10ddeb64d4e4480e69f2c3e9add26e65a90ec951 (diff) | |
download | src-1372519b1579b695b7c87b8fbbdc2c113e985474.tar.gz src-1372519b1579b695b7c87b8fbbdc2c113e985474.zip |
Remove multi-line __P() usage.
Notes
Notes:
svn path=/head/; revision=92941
Diffstat (limited to 'lib/libc/rpc/svc.c')
-rw-r--r-- | lib/libc/rpc/svc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index c201c0c2957c..5f131b2e5697 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -88,8 +88,8 @@ static struct svc_callout { extern rwlock_t svc_lock; extern rwlock_t svc_fd_lock; -static struct svc_callout *svc_find __P((rpcprog_t, rpcvers_t, - struct svc_callout **, char *)); +static struct svc_callout *svc_find(rpcprog_t, rpcvers_t, + struct svc_callout **, char *); /* *************** SVCXPRT related stuff **************** */ |