diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-29 12:28:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-29 12:28:14 +0000 |
commit | 453d94a93e573c5979e959533fb269b76eb66968 (patch) | |
tree | f4ed259c9ac7d70b14de54d73ae0d0d241912aa1 /proto.h | |
parent | a1cf41cd41cfa3d3c737acde06e0d3bbd02dd08d (diff) | |
download | perl-453d94a93e573c5979e959533fb269b76eb66968.tar.gz |
Change Perl_av_iter_p() to return IV* rather than I32* (which means
having to allocate memory where sizeof(IV) > sizeof(I32)).
p4raw-id: //depot/perl@32760
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ PERL_CALLCONV void Perl_av_unshift(pTHX_ AV* ar, I32 num) PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV* av) __attribute__nonnull__(pTHX_1); -PERL_CALLCONV I32* Perl_av_iter_p(pTHX_ AV* av) +PERL_CALLCONV IV* Perl_av_iter_p(pTHX_ AV* av) __attribute__nonnull__(pTHX_1); #if defined(PERL_IN_AV_C) || defined(PERL_DECL_PROT) |