diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-02 20:30:23 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-02 20:30:23 +0000 |
commit | 99fe673439cc018047c3dedf87ac7207fc08700d (patch) | |
tree | f8d69740468f7f4ddda32cf9f65029db9ee91d85 /perlapi.c | |
parent | f3c1f8b48486191d1733a7174be4087eb31ebae2 (diff) | |
download | perl-99fe673439cc018047c3dedf87ac7207fc08700d.tar.gz |
don't enable PERL_POLLUTE_MALLOC when EMBEDMYMALLOC is
in effect (from Spider Boardman <spider@leggy.zk3.dec.com>);
regen headers
p4raw-id: //depot/perl@3904
Diffstat (limited to 'perlapi.c')
-rwxr-xr-x | perlapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3492,14 +3492,14 @@ Perl_scalarvoid(pTHXo_ OP* o) } #undef Perl_scan_bin -UV +NV Perl_scan_bin(pTHXo_ char* start, I32 len, I32* retlen) { return ((CPerlObj*)pPerl)->Perl_scan_bin(start, len, retlen); } #undef Perl_scan_hex -UV +NV Perl_scan_hex(pTHXo_ char* start, I32 len, I32* retlen) { return ((CPerlObj*)pPerl)->Perl_scan_hex(start, len, retlen); @@ -3513,7 +3513,7 @@ Perl_scan_num(pTHXo_ char* s) } #undef Perl_scan_oct -UV +NV Perl_scan_oct(pTHXo_ char* start, I32 len, I32* retlen) { return ((CPerlObj*)pPerl)->Perl_scan_oct(start, len, retlen); |