diff options
Diffstat (limited to 'lib/libc/xdr/xdr.c')
-rw-r--r-- | lib/libc/xdr/xdr.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/libc/xdr/xdr.c b/lib/libc/xdr/xdr.c index 6d44a012443b..59a843405abf 100644 --- a/lib/libc/xdr/xdr.c +++ b/lib/libc/xdr/xdr.c @@ -33,11 +33,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *sccsid2 = "@(#)xdr.c 1.35 87/08/12"; -static char *sccsid = "@(#)xdr.c 2.1 88/07/29 4.0 RPCSRC"; -#endif -#include <sys/cdefs.h> /* * xdr.c, Generic XDR routines implementation. * @@ -89,13 +84,11 @@ xdr_free(xdrproc_t proc, void *objp) * XDR nothing */ bool_t -xdr_void(void) +xdr_void(XDR *xdrs __unused, void *ptr __unused) { - return (TRUE); } - /* * XDR integers */ @@ -626,7 +619,7 @@ xdr_netobj(XDR *xdrs, struct netobj *np) } /* - * XDR a descriminated union + * XDR a discriminated union * Support routine for discriminated unions. * You create an array of xdrdiscrim structures, terminated with * an entry with a null procedure pointer. The routine gets |