Re: [patch] libstdc++/14608 Add C++-conforming wrappers for stdlib.h and math.h

2016-01-20 Thread Jonathan Wakely
On 20/01/16 17:17 +0100, Dominik Vogt wrote: On Tue, Jan 19, 2016 at 09:43:59PM +, Jonathan Wakely wrote: On 08/01/16 19:18 +, Jonathan Wakely wrote: >This resolves the longstanding issue that #include uses the C >library header, which on most targets doesn't declare the additional >ove

Re: [patch] libstdc++/14608 Add C++-conforming wrappers for stdlib.h and math.h

2016-01-20 Thread Dominik Vogt
On Tue, Jan 19, 2016 at 09:43:59PM +, Jonathan Wakely wrote: > On 08/01/16 19:18 +, Jonathan Wakely wrote: > >This resolves the longstanding issue that #include uses the C > >library header, which on most targets doesn't declare the additional > >overloads required by C++11 26.8 [c.math],

Re: [patch] libstdc++/14608 Add C++-conforming wrappers for stdlib.h and math.h

2016-01-19 Thread Jonathan Wakely
On 08/01/16 19:18 +, Jonathan Wakely wrote: This resolves the longstanding issue that #include uses the C library header, which on most targets doesn't declare the additional overloads required by C++11 26.8 [c.math], and similarly for . With this patch libstdc++ provides its own and wrap

[patch] libstdc++/14608 Add C++-conforming wrappers for stdlib.h and math.h

2016-01-08 Thread Jonathan Wakely
This resolves the longstanding issue that #include uses the C library header, which on most targets doesn't declare the additional overloads required by C++11 26.8 [c.math], and similarly for . With this patch libstdc++ provides its own and wrappers, which are equivalent to or followed by us