diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-08-02 22:11:08 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-15 22:45:04 -0700 |
commit | 13f89586fe60fad5f4be3e8b89d5e605a7552658 (patch) | |
tree | 83bc7b0ad6e7e149f18bdc9ffeb99df55557259e /pp_proto.h | |
parent | ecf9c8b78fdc5245e639ddb2830e8e43cda480b9 (diff) | |
download | perl-13f89586fe60fad5f4be3e8b89d5e605a7552658.tar.gz |
Add clonecv op type
This will be used for cloning a ‘my’ sub on scope entry.
I was going to use pp_padcv for this, but it would end up having a
top-level if/else.
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pp_proto.h b/pp_proto.h index db19bfbed2..4eafd78b4a 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -34,6 +34,7 @@ PERL_CALLCONV OP *Perl_pp_chop(pTHX); PERL_CALLCONV OP *Perl_pp_chown(pTHX); PERL_CALLCONV OP *Perl_pp_chr(pTHX); PERL_CALLCONV OP *Perl_pp_chroot(pTHX); +PERL_CALLCONV OP *Perl_pp_clonecv(pTHX); PERL_CALLCONV OP *Perl_pp_close(pTHX); PERL_CALLCONV OP *Perl_pp_closedir(pTHX); PERL_CALLCONV OP *Perl_pp_complement(pTHX); |