Hi,

floorf() is apparently missing from libm. Grep'ing the source code of a
pretty recent checkout of uClibc, I have found an implementation in
libm/float_wrappers.c:

#ifdef L_floorf
libm_hidden_proto(floor)
float floorf (float x)
{
   return (float) floor( (double)x );
}
#endif

However L_floorf is never defined and I was wondering if it was not defined
on purpose? Is it safe to enable this code or should we have a different
implementation?

Regards,
Cedric Hombourger
_______________________________________________
uClibc mailing list
[email protected]
http://busybox.net/cgi-bin/mailman/listinfo/uclibc

Reply via email to