diff options
author | 2001-09-15 13:51:00 +0000 | |
---|---|---|
committer | 2001-09-15 13:51:00 +0000 | |
commit | 41aa8645fbcd1fbed586890d01ec7178a02474bd (patch) | |
tree | 5798f3567439e1e9c5532dd6a617d3fb556f8c4f /lib/libc/rpc/pmap_prot2.c | |
parent | Rewrite of powerpc pmap_page_protect(), the old version had a couple of (diff) | |
download | wireguard-openbsd-41aa8645fbcd1fbed586890d01ec7178a02474bd.tar.xz wireguard-openbsd-41aa8645fbcd1fbed586890d01ec7178a02474bd.zip |
prototype cleanup
Diffstat (limited to 'lib/libc/rpc/pmap_prot2.c')
-rw-r--r-- | lib/libc/rpc/pmap_prot2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/rpc/pmap_prot2.c b/lib/libc/rpc/pmap_prot2.c index d14c7f1992f..507ad9b0916 100644 --- a/lib/libc/rpc/pmap_prot2.c +++ b/lib/libc/rpc/pmap_prot2.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: pmap_prot2.c,v 1.3 1996/08/19 08:31:41 tholo Exp $"; +static char *rcsid = "$OpenBSD: pmap_prot2.c,v 1.4 2001/09/15 13:51:01 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -83,8 +83,8 @@ static char *rcsid = "$OpenBSD: pmap_prot2.c,v 1.3 1996/08/19 08:31:41 tholo Exp */ bool_t xdr_pmaplist(xdrs, rp) - register XDR *xdrs; - register struct pmaplist **rp; + XDR *xdrs; + struct pmaplist **rp; { /* * more_elements is pre-computed in case the direction is @@ -92,8 +92,8 @@ xdr_pmaplist(xdrs, rp) * xdr_bool when the direction is XDR_DECODE. */ bool_t more_elements; - register int freeing = (xdrs->x_op == XDR_FREE); - register struct pmaplist **next; + int freeing = (xdrs->x_op == XDR_FREE); + struct pmaplist **next; while (TRUE) { more_elements = (bool_t)(*rp != NULL); |