diff options
Diffstat (limited to 'include/rpc/xdr.h')
-rw-r--r-- | include/rpc/xdr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rpc/xdr.h b/include/rpc/xdr.h index ec6cd4c7e..f4756acd0 100644 --- a/include/rpc/xdr.h +++ b/include/rpc/xdr.h @@ -112,6 +112,10 @@ typedef struct XDR XDR; struct XDR { enum xdr_op x_op; /* operation; fast additional param */ + /* not sure whether non-const-ness is a part of the spec... if it is, + * enclose "const" in #ifdef _LIBC / #endif + * to make it effective only for libc compile */ + const struct xdr_ops { bool_t (*x_getlong) (XDR *__xdrs, long *__lp); |