[committed] libstdc++: Fix typo in <cstdlib> for freestanding

Message ID 20220920122641.812037-1-jwakely@redhat.com
State Committed
Commit 5ed0c11ec2a120031db9cecd9de302549e82dced
Headers
Series [committed] libstdc++: Fix typo in <cstdlib> for freestanding |

Commit Message

Jonathan Wakely Sept. 20, 2022, 12:26 p.m. UTC
  I messed this up last week. Tested x86_64-linux, pushed to trunk.

-- >8 --

libstdc++-v3/ChangeLog:

	* include/c_global/cstdlib [!_GLIBCXX_HOSTED] (quick_exit): Fix
	missing space.
---
 libstdc++-v3/include/c_global/cstdlib | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/libstdc++-v3/include/c_global/cstdlib b/libstdc++-v3/include/c_global/cstdlib
index 0f7362e263f..917dbe2e47a 100644
--- a/libstdc++-v3/include/c_global/cstdlib
+++ b/libstdc++-v3/include/c_global/cstdlib
@@ -63,7 +63,7 @@  namespace std
   extern "C" int at_quick_exit(void (*)(void)) _GLIBCXX_NOTHROW;
 # endif
 # ifdef _GLIBCXX_HAVE_QUICK_EXIT
-  extern "C" void quick_exit(int) _GLIBCXX_NOTHROW_GLIBCXX_NORETURN;
+  extern "C" void quick_exit(int) _GLIBCXX_NOTHROW _GLIBCXX_NORETURN;
 # endif
 #if _GLIBCXX_USE_C99_STDLIB
   extern "C" void _Exit(int) _GLIBCXX_NOTHROW _GLIBCXX_NORETURN;