diff options
author | Richard Henderson <rth@redhat.com> | 2001-04-02 16:23:34 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-04-02 16:23:34 -0700 |
commit | 847abd1f89757f66f18f694e2fdceeeda5d2b80f (patch) | |
tree | 8e02c7ef04812756322911273a35b43eb91304aa | |
parent | 4d8a20014dc9c6fd4161938823878206c5058e16 (diff) | |
download | gcc-847abd1f89757f66f18f694e2fdceeeda5d2b80f.zip gcc-847abd1f89757f66f18f694e2fdceeeda5d2b80f.tar.gz gcc-847abd1f89757f66f18f694e2fdceeeda5d2b80f.tar.bz2 |
except.h (lang_eh_type_covers): Mark extern.
* except.h (lang_eh_type_covers): Mark extern.
(lang_eh_runtime_type): Likewise.
From-SVN: r41024
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/except.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ac5b432..a86271d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-04-02 Richard Henderson <rth@redhat.com> + + * except.h (lang_eh_type_covers): Mark extern. + (lang_eh_runtime_type): Likewise. + 2001-04-02 Jakub Jelinek <jakub@redhat.com> * lex.c (ffelex_hash_): Avoid eating one whole line after diff --git a/gcc/except.h b/gcc/except.h index 84bbe07..a3598ed 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -149,10 +149,10 @@ extern void sjlj_emit_function_exit_after PARAMS ((rtx)); extern tree protect_cleanup_actions; /* Return true if type A catches type B. */ -int (*lang_eh_type_covers) PARAMS ((tree a, tree b)); +extern int (*lang_eh_type_covers) PARAMS ((tree a, tree b)); /* Map a type to a runtime object to match type. */ -tree (*lang_eh_runtime_type) PARAMS ((tree)); +extern tree (*lang_eh_runtime_type) PARAMS ((tree)); #ifndef TREE_CODE #undef tree |