aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorKelley Cook <kelleycook@wideopenwest.com>2003-09-30 21:49:01 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2003-09-30 21:49:01 +0000
commitbf9d3c27744bc5f86b3fa3d75e67552178c283ad (patch)
treef696e6f16bcc7d0e38799d437bbf748a8fc9d0c0 /gcc/objc
parent6594e599c3afe54b0ebe35a3fc1c246066a13850 (diff)
downloadgcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.zip
gcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.tar.gz
gcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.tar.bz2
Convert to ISO C90 prototypes.
From-SVN: r71957
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/objc-act.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 24fcffe..42141a4 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;