cxxabi.h (__cxa_bad_cast): Declare it.

* libsupc++/cxxabi.h (__cxa_bad_cast): Declare it.
	(__cxa_bad_typeid): Likewise.
	(__cxa_atexit): Likewise.
	(__cxa_finalize): Likewise.

From-SVN: r60001
This commit is contained in:
Mark Mitchell 2002-12-10 17:09:05 +00:00 committed by Mark Mitchell
parent 3e25353ee7
commit 68e25f8806
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2002-12-10 Mark Mitchell <mark@codesourcery.com>
* libsupc++/cxxabi.h (__cxa_bad_cast): Declare it.
(__cxa_bad_typeid): Likewise.
(__cxa_atexit): Likewise.
(__cxa_finalize): Likewise.
2002-12-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
* include/bits/slice_array.h (slice_array<>::operator=): Fix typo.

View File

@ -520,6 +520,22 @@ void __cxa_guard_abort (__guard *);
extern "C" void
__cxa_pure_virtual (void);
/* exception handling */
extern "C" void
__cxa_bad_cast ();
extern "C" void
__cxa_bad_typeid ();
/* DSO destruction */
extern "C" int
__cxa_atexit (void (*)(void *), void *, void *);
extern "C" int
__cxa_finalize (void *);
/* demangling routines */
extern "C"