Lack of fabsf on Solaris (patch included)

Cedric Berger cedric@wireless-networks.com
Thu Jan 25 05:47:00 GMT 2001


Martin Kahlert wrote:
> 
> Hi,
> there is no fabsf on Solaris machines.
> [...]

Why not simply this:

   jfloat java::lang::Math::abs(jfloat x)
   {
	return x < 0.0F ? -x : x;
   }
 
And removing all this autoconf mess?

Cedric


More information about the Java mailing list