summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorInaba Hiroto <inaba@st.rim.or.jp>2000-12-10 03:02:00 +0900
committerJarkko Hietaniemi <jhi@iki.fi>2000-12-09 21:51:16 +0000
commitc3654f1afb5dff5b62753314bd22e2270ff9f009 (patch)
treeee63ce0958fe7b4c7ab15fab34fa806e3714c2c7 /proto.h
parentcb3e09590bdc6f7bb084eeb2305484eacc1a5cff (diff)
downloadperl-c3654f1afb5dff5b62753314bd22e2270ff9f009.tar.gz
Additional patch for UTF8-keys (Re: perl@8016)
Message-ID: <3A31F508.34F4BB23@st.rim.or.jp> exists() didn't work for UTF-8 keys, and neither did shared hash keys. p4raw-id: //depot/perl@8056
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 1a3802ab47..ef1e8a5ac0 100644
--- a/proto.h
+++ b/proto.h
@@ -543,7 +543,7 @@ PERL_CALLCONV SV* Perl_newSVuv(pTHX_ UV u);
PERL_CALLCONV SV* Perl_newSVnv(pTHX_ NV n);
PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char* s, STRLEN len);
PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char* s, STRLEN len);
-PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, STRLEN len, U32 hash);
+PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash);
PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char* pat, ...)
#ifdef CHECK_FORMAT
__attribute__((format(printf,pTHX_1,pTHX_2)))