diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-11-25 01:06:27 +0100 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-11-30 12:37:29 +0100 |
commit | b83794c7d64c56b8d918c51e93d1136d33fa202b (patch) | |
tree | 3a74fabd67cf33b7555cd1c6e9bb509c9874abb8 /proto.h | |
parent | 31b05a0f9f5158b8f1340a8e92be562574510792 (diff) | |
download | perl-b83794c7d64c56b8d918c51e93d1136d33fa202b.tar.gz |
Add sv_unmagicext
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4406,6 +4406,11 @@ PERL_CALLCONV int Perl_sv_unmagic(pTHX_ SV *const sv, const int type) #define PERL_ARGS_ASSERT_SV_UNMAGIC \ assert(sv) +PERL_CALLCONV int Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl) + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_SV_UNMAGICEXT \ + assert(sv) + /* PERL_CALLCONV void Perl_sv_unref(pTHX_ SV* sv) __attribute__nonnull__(pTHX_1); */ #define PERL_ARGS_ASSERT_SV_UNREF \ |