summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/authunix_prot.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:32:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:32:18 +0000
commita66bc0f761fcc23e27977921cfe583d1c9ba3e82 (patch)
treedf1394ed9059db704ff552239117a99e1ed1d547 /cpukit/librpc/src/rpc/authunix_prot.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a66bc0f761fcc23e27977921cfe583d1c9ba3e82.tar.bz2
Stop using old-style function definitions.
Diffstat (limited to 'cpukit/librpc/src/rpc/authunix_prot.c')
-rw-r--r--cpukit/librpc/src/rpc/authunix_prot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/librpc/src/rpc/authunix_prot.c b/cpukit/librpc/src/rpc/authunix_prot.c
index 5791e9e1f9..fcabfc38bf 100644
--- a/cpukit/librpc/src/rpc/authunix_prot.c
+++ b/cpukit/librpc/src/rpc/authunix_prot.c
@@ -50,9 +50,9 @@ static char *rcsid = "$FreeBSD: src/lib/libc/rpc/authunix_prot.c,v 1.6 1999/08/2
* XDR for unix authentication parameters.
*/
bool_t
-xdr_authunix_parms(xdrs, p)
- register XDR *xdrs;
- register struct authunix_parms *p;
+xdr_authunix_parms(
+ XDR *xdrs,
+ struct authunix_parms *p)
{
if (xdr_u_long(xdrs, &(p->aup_time))