Date: Sat, 22 Jul 1995 11:38:13 -0700 From: "Jordan K. Hubbard" <jkh@time.cdrom.com> To: Pedro A M Vazquez <vazquez@iqm.unicamp.br> Cc: rpt@miles.sso.loral.com (Richard Toren), hackers@FREEBSD.ORG Subject: Re: missing xdr routines ?? Message-ID: <29898.806438293@time.cdrom.com> In-Reply-To: Your message of "Sat, 22 Jul 1995 12:49:10 -0300." <199507221549.MAA19072@kalypso.iqm.unicamp.br>
next in thread | previous in thread | raw e-mail | index | archive | help
> I'm using this code I got from pvm2.4.1: > > int > xdr_float(xdrp, fp) > XDR *xdrp; > float *fp; > { > return xdr_long(xdrp, (long*)fp); > } > > int > xdr_double(xdrp, dp) > XDR *xdrp; > double *dp; > { > return xdr_long(xdrp, (long*)dp + 1) > && xdr_long(xdrp, (long*)dp); > } So what's the concensus, folks? Should we add these? Were they omitted for a reason? If not, I'll add them in the next 24 hours. Jordan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?29898.806438293>