summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-05-09 21:42:18 +0000
committerNicholas Clark <nick@ccl4.org>2006-05-09 21:42:18 +0000
commit262cbcdb563b9a037afe19e3ef94322ccc35436a (patch)
tree0660c0026597e8a39f291734b7e94f5a275a9235 /proto.h
parentd1544d85966c2f41014a6f408fd81b36501caa7c (diff)
downloadperl-262cbcdb563b9a037afe19e3ef94322ccc35436a.tar.gz
Change 28145 means that Perl_allocmy() can take a const char *name.
p4raw-id: //depot/perl@28146
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 11541626f2..f24304b11d 100644
--- a/proto.h
+++ b/proto.h
@@ -1695,7 +1695,7 @@ PERL_CALLCONV void Perl_package(pTHX_ OP* o)
#endif
PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype);
-PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ char* name)
+PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ const char *const name)
__attribute__nonnull__(pTHX_1);
PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name)