diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 11:23:37 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 11:23:37 +0000 |
commit | bda4119bc5ac877809e21a4c89ea66d3512e38b8 (patch) | |
tree | 43c3c136d8855a8366f15040e6ff678c47f10d7e /op.c | |
parent | eb1ab10a22402f281618389d37c3ca06ba5f71b2 (diff) | |
download | perl-bda4119bc5ac877809e21a4c89ea66d3512e38b8.tar.gz |
PERL_OBJECTness for change#2595
p4raw-link: @2595 on //depot/cfgperl: 9c007264caa0e1aed57010dc2950fe35f9d8347e
p4raw-id: //depot/perl@2627
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -51,7 +51,7 @@ static PADOFFSET pad_findlex _((char* name, PADOFFSET newoff, U32 seq, CV* startcv, I32 cx_ix, I32 saweval)); static OP *newDEFSVOP _((void)); static OP *new_logop _((I32 type, I32 flags, OP **firstp, OP **otherp)); -static void simplify_sort(OP *o); +static void simplify_sort _((OP *o)); #endif STATIC char* @@ -5092,7 +5092,8 @@ ck_sort(OP *o) return o; } -static void + +STATIC void simplify_sort(OP *o) { register OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */ |