From owner-cvs-lib Mon Dec 30 06:07:17 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA26626 for cvs-lib-outgoing; Mon, 30 Dec 1996 06:07:17 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id GAA26619; Mon, 30 Dec 1996 06:07:15 -0800 (PST) Date: Mon, 30 Dec 1996 06:07:15 -0800 (PST) From: Peter Wemm Message-Id: <199612301407.GAA26619@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-lib Subject: cvs commit: src/lib/libc/xdr xdr.c xdr_array.c xdr_float.c xdr_mem.c xdr_rec.c xdr_reference.c xdr_stdio.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/12/30 06:07:15 Modified: lib/libc/xdr xdr.c xdr_array.c xdr_float.c xdr_mem.c xdr_rec.c xdr_reference.c xdr_stdio.c Log: - Missing prototypes, including pointers to functions - 64 bit long type safe (wire protocols specified in explicit sized types) - Support systems that don't do unaligned accesses - Support for explicit int16 and int32 sizes in xdr Obtained from: a diff of FreeBSD vs. OpenBSD/NetBSD rpc code. Revision Changes Path 1.4 +177 -37 src/lib/libc/xdr/xdr.c 1.4 +3 -4 src/lib/libc/xdr/xdr_array.c 1.3 +48 -17 src/lib/libc/xdr/xdr_float.c 1.4 +82 -26 src/lib/libc/xdr/xdr_mem.c 1.5 +51 -50 src/lib/libc/xdr/xdr_rec.c 1.4 +3 -3 src/lib/libc/xdr/xdr_reference.c 1.3 +11 -13 src/lib/libc/xdr/xdr_stdio.c