diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-30 21:49:01 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-30 21:49:01 +0000 |
commit | 808ea0c9a400ee863543d2c294d795d34979d625 (patch) | |
tree | f696e6f16bcc7d0e38799d437bbf748a8fc9d0c0 /gcc/objc | |
parent | 65b03ed4d686ce5e61fdeebaba792f188ae7819e (diff) | |
download | gcc-808ea0c9a400ee863543d2c294d795d34979d625.tar.gz |
Convert to ISO C90 prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71957 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 24fcffebb9b..42141a4ab42 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -3125,7 +3125,7 @@ objc_build_catch_epilogue (void) } tree -objc_build_finally_prologue () +objc_build_finally_prologue (void) { /* { // begin FINALLY scope if (!_rethrowException) { @@ -4556,8 +4556,7 @@ generate_ivars_list (tree type, const char *name, int size, tree list) /* Count only the fields occurring in T. */ static int -ivar_list_length (t) - tree t; +ivar_list_length (tree t) { int count = 0; |