libstdc++: Add _Exit to <stdlib.h> for freestanding
authorJonathan Wakely <jwakely@redhat.com>
Tue, 20 Sep 2022 23:48:12 +0000 (00:48 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 21 Sep 2022 07:44:21 +0000 (08:44 +0100)
When I added std::_Exit to the freestanding declarations in <cstdlib> I
should also have added it to <stdlib.h>.

libstdc++-v3/ChangeLog:

* include/c_compatibility/stdlib.h [!_GLIBCXX_HOSTED]: Add
using-declaration for _Exit.

libstdc++-v3/include/c_compatibility/stdlib.h

index 377b910..70fa4c8 100644 (file)
@@ -45,6 +45,9 @@ using std::exit;
 # ifdef _GLIBCXX_HAVE_QUICK_EXIT
   using std::quick_exit;
 # endif
+# if _GLIBCXX_USE_C99_STDLIB
+  using std::_Exit;
+# endif
 #endif
 
 #if _GLIBCXX_HOSTED