Commit 0d25c320 by Jan Beulich Committed by Jan Beulich

stubs.c: Also implement fabsf/fabsl if not present in the system libraries.

libstdc++-v3/
2005-05-20  Jan Beulich  <jbeulich@novell.com>

	* libmath/stubs.c: Also implement fabsf/fabsl if not present in the
	system libraries.

From-SVN: r100013
parent a8090052
2005-05-20 Jan Beulich <jbeulich@novell.com>
* libmath/stubs.c: Also implement fabsf/fabsl if not present in the
system libraries.
2005-05-20 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_algo.h (__rotate<_RandomAccessIterator>):
......
......@@ -34,6 +34,23 @@
we use the crude approximation. We'll do better later. */
#ifndef HAVE_FABSF
float
fabsf(float x)
{
return (float) fabs(x);
}
#endif
#ifndef HAVE_FABSL
long double
fabsl(long double x)
{
return fabs((double) x);
}
#endif
#ifndef HAVE_ACOSF
float
acosf(float x)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment