diff options
| author | matt <matt@NetBSD.org> | 2000-07-17 05:00:45 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2000-07-17 05:00:45 +0000 |
| commit | 428b8d7bebf27596acb30738e9d1adcd4202ebe7 (patch) | |
| tree | e494e53730e9a369d387bd31bbb3e6d6cc36bad7 /include | |
| parent | dd8046c23fe207864d08084c7324d9803773e238 (diff) | |
Add some missing ints
Diffstat (limited to 'include')
| -rw-r--r-- | include/rpc/xdr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rpc/xdr.h b/include/rpc/xdr.h index adbc1812f8e..a6df514b7f1 100644 --- a/include/rpc/xdr.h +++ b/include/rpc/xdr.h @@ -1,4 +1,4 @@ -/* $NetBSD: xdr.h,v 1.18 2000/07/14 08:39:31 fvdl Exp $ */ +/* $NetBSD: xdr.h,v 1.19 2000/07/17 05:00:45 matt Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -154,7 +154,7 @@ typedef bool_t (*xdrproc_t) __P((/* XDR *, void *, u_int */)); #define xdr_putlong(xdrs, longp) \ (*(xdrs)->x_ops->x_putlong)(xdrs, longp) -static __inline +static __inline int xdr_getint32(XDR *xdrs, int32_t *ip) { long l; @@ -165,7 +165,7 @@ xdr_getint32(XDR *xdrs, int32_t *ip) return (TRUE); } -static __inline +static __inline int xdr_putint32(XDR *xdrs, int32_t *ip) { long l; |
