diff options
Diffstat (limited to 'newlib/libc/xdr/xdr_float.c')
-rw-r--r-- | newlib/libc/xdr/xdr_float.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/xdr/xdr_float.c b/newlib/libc/xdr/xdr_float.c index 691e929..e19b1ef 100644 --- a/newlib/libc/xdr/xdr_float.c +++ b/newlib/libc/xdr/xdr_float.c @@ -59,8 +59,7 @@ #if defined(__IEEE_LITTLE_ENDIAN) || defined(__IEEE_BIG_ENDIAN) bool_t -_DEFUN (xdr_float, (xdrs, fp), - XDR * xdrs, +xdr_float (XDR * xdrs, float *fp) { switch (xdrs->x_op) @@ -80,8 +79,7 @@ _DEFUN (xdr_float, (xdrs, fp), #if !defined(_DOUBLE_IS_32BITS) bool_t -_DEFUN (xdr_double, (xdrs, dp), - XDR * xdrs, +xdr_double (XDR * xdrs, double *dp) { int32_t *i32p; |