diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2005-08-26 21:10:59 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2005-08-26 21:10:59 +0000 |
commit | 277d42e27fa0271ca8cc3cd00607980b5731ed51 (patch) | |
tree | 8a9ff1231f676eb1b8f844fa75ddbd482309c0c5 /libstdc++-v3/src | |
parent | 327d749cf801245ac09a5539bb0ee4f07a32002c (diff) | |
download | gcc-277d42e27fa0271ca8cc3cd00607980b5731ed51.zip gcc-277d42e27fa0271ca8cc3cd00607980b5731ed51.tar.gz gcc-277d42e27fa0271ca8cc3cd00607980b5731ed51.tar.bz2 |
PR libstdc++/20534 (contd)
2005-08-26 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/20534 (contd)
* src/debug.cc (__gnu_debug): Remove __fancy_abort definition.
Remove cstdio and cstdlib includes.
* include/debug/debug.h: Define inline here. Remove
_GLIBCXX_DEBUG_ABORT.
* include/debug/macros.h: Remove __fancy_abort declaration,
_GLIBXX_DEBUG_ABORT definition.
* config/linker-map.gnu: Remove export.
From-SVN: r103535
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r-- | libstdc++-v3/src/debug.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libstdc++-v3/src/debug.cc b/libstdc++-v3/src/debug.cc index a86367a..af927e1 100644 --- a/libstdc++-v3/src/debug.cc +++ b/libstdc++-v3/src/debug.cc @@ -32,10 +32,8 @@ #include <debug/safe_sequence.h> #include <debug/safe_iterator.h> #include <algorithm> -#include <cstdlib> #include <cassert> #include <cstring> -#include <cstdio> #include <cctype> #include <bits/concurrence.h> @@ -48,15 +46,6 @@ namespace __gnu_internal namespace __gnu_debug { - void - __fancy_abort(const char* __file, int __line, const char* __function, - const char* __condition) - { - printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line, - __function, __condition); - abort(); - } - const char* _S_debug_messages[] = { "function requires a valid iterator range [%1.name;, %2.name;)", |