Commit 76104d42 by Matthias Klose Committed by Matthias Klose

re PR libstdc++/40038 (symbols ceill@GLIBCXX_3.4.3 not exported)

2009-05-07  Matthias Klose  <doko@ubuntu.com>

	PR libstdc++/40038
	* src/math_stubs_long_double.cc: Add ceill.

From-SVN: r147217
parent 0b70eafd
2009-05-07 Matthias Klose <doko@ubuntu.com>
PR libstdc++/40038
* src/math_stubs_long_double.cc: Add ceill.
2009-05-06 Johannes Singler <singler@ira.uka.de>
PR libstdc++/39546
......
......@@ -70,6 +70,14 @@ extern "C"
}
#endif
#ifndef _GLIBCXX_HAVE_CEILL
long double
ceill(long double x)
{
return ceil((double) x);
}
#endif
#ifndef _GLIBCXX_HAVE_COSL
long double
cosl(long double 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