diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-05 17:51:50 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-06 05:56:04 -0800 |
commit | 9ce1fb7d2323e20e2cf2480171cbfb4f2b1153ea (patch) | |
tree | d4ba95e015ef45a6fdc4d598af274bdee2eb21b3 /proto.h | |
parent | 48c2c411a1dfc4a3e5e0e6829b02441a37bb3081 (diff) | |
download | perl-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.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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); |