From owner-freebsd-hackers Sat Jul 22 09:04:41 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id JAA00782 for hackers-outgoing; Sat, 22 Jul 1995 09:04:41 -0700 Received: from kalypso.iqm.unicamp.br (kalypso.iqm.unicamp.br [143.106.13.10]) by freefall.cdrom.com (8.6.11/8.6.6) with ESMTP id JAA00776 for ; Sat, 22 Jul 1995 09:04:36 -0700 Received: (from vazquez@localhost) by kalypso.iqm.unicamp.br (8.6.10/8.6.9) id MAA19072; Sat, 22 Jul 1995 12:49:14 -0300 From: Pedro A M Vazquez Message-Id: <199507221549.MAA19072@kalypso.iqm.unicamp.br> Subject: Re: missing xdr routines ?? To: rpt@miles.sso.loral.com (Richard Toren) Date: Sat, 22 Jul 1995 12:49:10 -0300 (EST) Cc: hackers@freebsd.org In-Reply-To: from "Richard Toren" at Jul 22, 95 11:18:38 am Organization: Instituto de Quimica Unicamp X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 1378 Sender: hackers-owner@freebsd.org Precedence: bulk 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); } Pedro Richard Toren said: > > I seem to be missing 2 xdr routines. These are xdr_float and xdr_double. > The file has prototypes for them , but I could not find them > in libc.a. I was able to find all of the rest mentioned in the man page. > I checked both 2.0 and 2.0.5 libraries. > > What is the status on these? Known problem, oversight, feature? > > ==================================================== > Rip Toren | The bad news is that C++ is not an object-oriented | > rpt@miles.sso.loral.com | programming language. .... The good news is that | > | C++ supports object-oriented programming. | > | C++ Programming & Fundamental Concepts | > | by Anderson & Heinze | > ==================================================== >