Commit 928fe27c by Jonathan Wakely Committed by Jonathan Wakely

re PR libstdc++/43865 (C++ in freestanding environment)

2010-04-27  Jonathan Wakely  <jwakely.gcc@gmail.com>

	PR libstdc++/43865
	* include/c_global/cstdlib (abort, exit): _GLIBCXX_NORETURN typo.

From-SVN: r158812
parent 4cbd3309
2010-04-27 Jonathan Wakely <jwakely.gcc@gmail.com> 2010-04-27 Jonathan Wakely <jwakely.gcc@gmail.com>
PR libstdc++/43865
* include/c_global/cstdlib (abort, exit): _GLIBCXX_NORETURN typo.
2010-04-27 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/xml/manual/status_cxx200x.xml: Update quick_exit status. * doc/xml/manual/status_cxx200x.xml: Update quick_exit status.
* doc/html/*: Regenerate. * doc/html/*: Regenerate.
......
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
_GLIBCXX_BEGIN_NAMESPACE(std) _GLIBCXX_BEGIN_NAMESPACE(std)
extern "C" void abort(void) throw () _GLIBC_NORETURN; extern "C" void abort(void) throw () _GLIBCXX_NORETURN;
extern "C" int atexit(void (*)()) throw (); extern "C" int atexit(void (*)()) throw ();
extern "C" void exit(int) throw () _GLIBC_NORETURN; extern "C" void exit(int) throw () _GLIBCXX_NORETURN;
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE
......
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