diff options
author | Lukas Mai <l.mai@web.de> | 2014-10-25 00:39:03 +0200 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-24 20:36:34 -0700 |
commit | ce409cc88cd7e9921c410d37ca33d12e05a50aa1 (patch) | |
tree | 3a4268b204bc0b80c62d4daa6bb368322da38456 /proto.h | |
parent | dd3f0a7a42a6b28853a3bb382e5d2d31de838a7c (diff) | |
download | perl-ce409cc88cd7e9921c410d37ca33d12e05a50aa1.tar.gz |
APIfy newDEFSVOP
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2853,6 +2853,9 @@ PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) __attribute__malloc__ __attribute__warn_unused_result__; +PERL_CALLCONV OP* Perl_newDEFSVOP(pTHX) + __attribute__warn_unused_result__; + PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block); PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, OP* sv, OP* expr, OP* block, OP* cont) __attribute__malloc__ @@ -6279,9 +6282,6 @@ STATIC OP * S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp) #define PERL_ARGS_ASSERT_MY_KID \ assert(imopsp) -STATIC OP* S_newDEFSVOP(pTHX) - __attribute__warn_unused_result__; - STATIC OP* S_newGIVWHENOP(pTHX_ OP* cond, OP *block, I32 enter_opcode, I32 leave_opcode, PADOFFSET entertarg) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_NEWGIVWHENOP \ |