Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!cs.utexas.edu!uunet!bfmny0!tneff From: tneff@bfmny0.UU.NET (Tom Neff) Newsgroups: comp.lang.perl Subject: Re: More on castulong Message-ID: <15330@bfmny0.UU.NET> Date: 7 Apr 90 01:09:28 GMT References: <638@fsu.scri.fsu.edu> Reply-To: tneff@bfmny0.UU.NET (Tom Neff) Lines: 24 In article <638@fsu.scri.fsu.edu> nall@sun8.scri.fsu.edu (John Nall) writes: >The reason is that if the symbol CASTNEGFLOAT is undefined in config.h, >then perl.h comes up with something called castulong() which is not >defined anywhere so far as I can determine. Strange - at the end of my copy of util.c (marked 3.0.1.5 90/03/27 16:35:13) is this: #ifndef CASTNEGFLOAT unsigned long castulong(f) double f; { long along; if (f >= 0.0) return (unsigned long)f; along = (long)f; return (unsigned long)along; } #endif I think John had better check his whole package, possible ftp it from scratch.