On Mon, 2 Jun 2003, Dan Sully wrote: > > > > HPUX doesn't have finite() - it has isfinite() instead. > > > > Not my HPUX box. I'm running 10.20 and the HP ANSI C compiler > > I tried the make test and here is a listing of the errors > > Of course they would have to change it between 10.20 and 11.00/11i > > I unfortunately don't have a 10.20 box to test on. > > What does a 'man finite' get you?
How about doing this in the source: #ifdef _HPUX_SOURCE # ifdef isfinite # define finite isfinite # endif #endif ?? Does that work? -dave /*======================= House Absolute Consulting www.houseabsolute.com =======================*/
