mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
0b70eafda5
commit
76104d42a4
|
@ -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>
|
2009-05-06 Johannes Singler <singler@ira.uka.de>
|
||||||
|
|
||||||
PR libstdc++/39546
|
PR libstdc++/39546
|
||||||
|
|
|
@ -70,6 +70,14 @@ extern "C"
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef _GLIBCXX_HAVE_CEILL
|
||||||
|
long double
|
||||||
|
ceill(long double x)
|
||||||
|
{
|
||||||
|
return ceil((double) x);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef _GLIBCXX_HAVE_COSL
|
#ifndef _GLIBCXX_HAVE_COSL
|
||||||
long double
|
long double
|
||||||
cosl(long double x)
|
cosl(long double x)
|
||||||
|
|
Loading…
Reference in New Issue