diff options
Diffstat (limited to 'perlapi.c')
-rw-r--r-- | perlapi.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!! +/* !!!!!!! DO NOT EDIT THIS FILE !!!!!!! This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h, perlvars.h and thrdvar.h. Any changes made here will be lost! */ @@ -2015,6 +2015,13 @@ Perl_newSVpvn(pTHXo_ const char* s, STRLEN len) return ((CPerlObj*)pPerl)->Perl_newSVpvn(s, len); } +#undef Perl_newSVpvn_share +SV* +Perl_newSVpvn_share(pTHXo_ const char* s, STRLEN len, U32 hash) +{ + return ((CPerlObj*)pPerl)->Perl_newSVpvn_share(s, len, hash); +} + #undef Perl_newSVpvf SV* Perl_newSVpvf(pTHXo_ const char* pat, ...) |