diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-11 06:16:18 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-11 06:16:18 +0000 |
commit | 37c61a771dd0597545e35d24a16ffe40cfc37be1 (patch) | |
tree | 813b63b67ed109592b754efcfe592cfac569def2 /gcc/libgcc2.h | |
parent | 8c7eaeaa79a2c689dd6ea2f69c586472930d22e2 (diff) | |
download | gcc-37c61a771dd0597545e35d24a16ffe40cfc37be1.tar.gz |
* libgcc2.h (__terminate_func_ptr): Remove typedef.
(__pure_virtual, __terminate, __terminate_set_func,
__default_terminate, __throw_type_match, __empty,
__get_eh_context, __get_eh_info, __get_dynamic_handler_chain,
__eh_rtime_match, __unwinding_cleanup, __rethrow,
__sjthrow, __sjpopnthrow, __eh_alloc, __eh_free):
Remove prototypes of deleted functions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41240 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r-- | gcc/libgcc2.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h index 7a26e33ea0b..d73af8db847 100644 --- a/gcc/libgcc2.h +++ b/gcc/libgcc2.h @@ -22,31 +22,12 @@ Boston, MA 02111-1307, USA. */ #ifndef __LIBGCC2_H__ #define __LIBGCC2_H__ -typedef void (*__terminate_func_ptr)(void) __attribute__ ((__noreturn__)); - extern int __gcc_bcmp (const unsigned char *, const unsigned char *, size_t); extern void *__builtin_saveregs (void); extern void __dummy (void); extern void __clear_cache (char *, char *); -extern void __pure_virtual (void) __attribute__ ((__noreturn__)); -extern void __terminate (void) __attribute__ ((__noreturn__)); -extern __terminate_func_ptr __terminate_set_func (__terminate_func_ptr); -extern void __default_terminate (void) __attribute__ ((__noreturn__)); -extern void *__throw_type_match (void *, void *, void *); -extern void __empty (void); -extern void *__get_eh_context (void); -extern void **__get_eh_info (void); -extern void ***__get_dynamic_handler_chain (void); -extern int __eh_rtime_match (void *); -extern void __unwinding_cleanup (void); -extern void __rethrow (void *); -extern void __throw (void); -extern void __sjthrow (void) __attribute__ ((__noreturn__)); -extern void __sjpopnthrow (void) __attribute__ ((__noreturn__)); extern void __eprintf (const char *, const char *, unsigned int, const char *) __attribute__ ((__noreturn__)); -extern void *__eh_alloc (size_t); -extern void __eh_free (void *); struct bb; extern void __bb_exit_func (void); |