diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-06-20 11:46:50 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-06-20 11:46:50 +0000 |
commit | 3bc5dc61eb7997c904fe06e07f74e776f3ee17eb (patch) | |
tree | cf44079191d4fa3b87341ed3827faf412afd405c /op.c | |
parent | e858de61083066071eb1526df39bdaa094032c61 (diff) | |
download | perl-3bc5dc61eb7997c904fe06e07f74e776f3ee17eb.tar.gz |
corrected bad_type() prototype.
p4raw-id: //depot/perl@31
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ : (*check[type])((OP*)o)) static I32 list_assignment _((OP *o)); -static OP *bad_type _((I32 n, char *t, char *name, OP *kid)); +static void bad_type _((I32 n, char *t, char *name, OP *kid)); static OP *modkids _((OP *o, I32 type)); static OP *no_fh_allowed _((OP *o)); static bool scalar_mod_type _((OP *o, I32 type)); @@ -77,7 +77,7 @@ char* name; return o; } -static OP * +static void bad_type(n, t, name, kid) I32 n; char *t; |