diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-09-24 05:40:41 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-10-06 13:01:01 -0700 |
commit | 20980f0122d374b4a9d072436ef0415126f941de (patch) | |
tree | fd29faf59502e5a1eba32f6b5c194c5f26bda1bc | |
parent | 9cc50d5bae7393fdf31d09472cbd42a45f1698c8 (diff) | |
download | perl-20980f0122d374b4a9d072436ef0415126f941de.tar.gz |
Restore newGVgen to perlapi.pod
-rw-r--r-- | embed.fnc | 1 | ||||
-rw-r--r-- | proto.h | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -873,6 +873,7 @@ Apa |OP* |newAVREF |NN OP* o Apda |OP* |newBINOP |I32 type|I32 flags|NULLOK OP* first|NULLOK OP* last Apa |OP* |newCVREF |I32 flags|NULLOK OP* o Apda |OP* |newGVOP |I32 type|I32 flags|NN GV* gv +Am |GV* |newGVgen |NN const char* pack Apa |GV* |newGVgen_flags |NN const char* pack|U32 flags Apa |OP* |newGVREF |I32 type|NULLOK OP* o ApaR |OP* |newHVREF |NN OP* o @@ -2563,6 +2563,9 @@ PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) __attribute__malloc__ __attribute__warn_unused_result__; +/* PERL_CALLCONV GV* newGVgen(pTHX_ const char* pack) + __attribute__nonnull__(pTHX_1); */ + PERL_CALLCONV GV* Perl_newGVgen_flags(pTHX_ const char* pack, U32 flags) __attribute__malloc__ __attribute__warn_unused_result__ |