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
This commit is contained in:
Matthias Klose 2009-05-07 06:55:15 +00:00 committed by Matthias Klose
parent 0b70eafda5
commit 76104d42a4
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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)