diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-07 23:31:34 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-07 23:31:34 +0000 |
commit | f63535fc1ee25ce8797e36d8218abfba903e1bcd (patch) | |
tree | 748a49797ed8d0cd8cb89a07cb0e0fce16d917ff /universal.c | |
parent | 36c662f48c9a23ec4251c3cf747c3f42c63a6fd9 (diff) | |
download | perl-f63535fc1ee25ce8797e36d8218abfba903e1bcd.tar.gz |
Post change 32880, restore the dummy sub Regexp::DESTROY {}
p4raw-id: //depot/perl@32896
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/universal.c b/universal.c index 7d1bd559dd..a6b3f6e89e 100644 --- a/universal.c +++ b/universal.c @@ -205,6 +205,7 @@ XS(XS_Internals_SvREADONLY); XS(XS_Internals_SvREFCNT); XS(XS_Internals_hv_clear_placehold); XS(XS_PerlIO_get_layers); +XS(XS_Regexp_DESTROY); XS(XS_Internals_hash_seed); XS(XS_Internals_rehash_seed); XS(XS_Internals_HvREHASH); @@ -268,6 +269,7 @@ Perl_boot_core_UNIVERSAL(pTHX) XS_Internals_hv_clear_placehold, file, "\\%"); newXSproto("PerlIO::get_layers", XS_PerlIO_get_layers, file, "*;@"); + newXS("Regexp::DESTROY", XS_Regexp_DESTROY, file); newXSproto("Internals::hash_seed",XS_Internals_hash_seed, file, ""); newXSproto("Internals::rehash_seed",XS_Internals_rehash_seed, file, ""); newXSproto("Internals::HvREHASH", XS_Internals_HvREHASH, file, "\\%"); @@ -879,6 +881,12 @@ XS(XS_Internals_hv_clear_placehold) } } +XS(XS_Regexp_DESTROY) +{ + PERL_UNUSED_CONTEXT; + PERL_UNUSED_ARG(cv); +} + XS(XS_PerlIO_get_layers) { dVAR; |