* sunrpc/rpc/xdr.h (struct XDR): Don't mark xdr_ops element as const.
This commit is contained in:
Ulrich Drepper 1998-06-01 14:17:37 +00:00
parent fa1f94fe1d
commit 112f5896cc
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
1998-06-01 Ulrich Drepper <drepper@cygnus.com>
* sunrpc/rpc/xdr.h (struct XDR): Don't mark xdr_ops element as const.
* sysdeps/i386/fpu/bits/mathinline.h: Use ((__unused__)) instead
of ((unused)). Reported by Bruno Haible.

View File

@ -115,7 +115,7 @@ typedef struct XDR XDR;
struct XDR
{
enum xdr_op x_op; /* operation; fast additional param */
const struct xdr_ops
struct xdr_ops
{
bool_t (*x_getlong) __P ((XDR * __xdrs, long *__lp));
/* get a long from underlying stream */