summaryrefslogtreecommitdiff
path: root/include/rpc
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2005-12-24 19:12:23 +0000
committerperry <perry@NetBSD.org>2005-12-24 19:12:23 +0000
commita2cd732268201e59a69ccf2bfd390176b5c270a6 (patch)
tree3fbe88dade8c0e10a65f49e4e1b6790bed8b75e3 /include/rpc
parente14523e9437df221f7befdd807dec1d60740c4e1 (diff)
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/xdr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rpc/xdr.h b/include/rpc/xdr.h
index 79d9efdfa47..9c328a65ec6 100644
--- a/include/rpc/xdr.h
+++ b/include/rpc/xdr.h
@@ -1,4 +1,4 @@
-/* $NetBSD: xdr.h,v 1.22 2005/02/03 04:39:33 perry Exp $ */
+/* $NetBSD: xdr.h,v 1.23 2005/12/24 19:16:02 perry Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -154,7 +154,7 @@ typedef bool_t (*xdrproc_t)(/* XDR *, void *, u_int */);
#define xdr_putlong(xdrs, longp) \
(*(xdrs)->x_ops->x_putlong)(xdrs, longp)
-static __inline int
+static inline int
xdr_getint32(XDR *xdrs, int32_t *ip)
{
long l;
@@ -165,7 +165,7 @@ xdr_getint32(XDR *xdrs, int32_t *ip)
return 1;
}
-static __inline int
+static inline int
xdr_putint32(XDR *xdrs, int32_t *ip)
{
long l;