summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-11-05 17:51:50 -0800
committerFather Chrysostomos <sprout@cpan.org>2013-11-06 05:56:04 -0800
commit9ce1fb7d2323e20e2cf2480171cbfb4f2b1153ea (patch)
treed4ba95e015ef45a6fdc4d598af274bdee2eb21b3 /proto.h
parent48c2c411a1dfc4a3e5e0e6829b02441a37bb3081 (diff)
downloadperl-9ce1fb7d2323e20e2cf2480171cbfb4f2b1153ea.tar.gz
Split ck_open into two functions
It is used for two op types, but only a small portion of it applies to both, so we can put that in a static function. This makes the next commit easier.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index 2d4b155191..c8811e4a84 100644
--- a/proto.h
+++ b/proto.h
@@ -365,6 +365,12 @@ PERL_CALLCONV OP * Perl_ck_anoncode(pTHX_ OP *o)
#define PERL_ARGS_ASSERT_CK_ANONCODE \
assert(o)
+PERL_CALLCONV OP * Perl_ck_backtick(pTHX_ OP *o)
+ __attribute__warn_unused_result__
+ __attribute__nonnull__(pTHX_1);
+#define PERL_ARGS_ASSERT_CK_BACKTICK \
+ assert(o)
+
PERL_CALLCONV OP * Perl_ck_bitop(pTHX_ OP *o)
__attribute__warn_unused_result__
__attribute__nonnull__(pTHX_1);