diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-09 21:42:18 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-09 21:42:18 +0000 |
commit | 262cbcdb563b9a037afe19e3ef94322ccc35436a (patch) | |
tree | 0660c0026597e8a39f291734b7e94f5a275a9235 /proto.h | |
parent | d1544d85966c2f41014a6f408fd81b36501caa7c (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |