summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-19 23:06:46 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-11-20 14:13:59 -0800
commit9c0a60906babcaff328d90d8185138582eb47a13 (patch)
tree398d8bfcbef24236ede4219f7dd194c07d1d0bcf /proto.h
parent8fe0571645619844c3a4f2defc3990634138e838 (diff)
downloadperl-9c0a60906babcaff328d90d8185138582eb47a13.tar.gz
Add len flag to newCONSTSUB_flags
This function was added after 5.14.0, so it is not too late to change it. It is currently unused.
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 55f4b3b09f..b891da30bb 100644
--- a/proto.h
+++ b/proto.h
@@ -2540,7 +2540,7 @@ PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* fal
assert(first)
PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv);
-PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, U32 flags, SV* sv);
+PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags, SV* sv);
PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o)
__attribute__malloc__
__attribute__warn_unused_result__;