diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-08 13:23:16 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-08 13:23:16 +0000 |
commit | f25172013443eb112285f24a09b83900edb8a738 (patch) | |
tree | 678f9789da4edbccaa4836270985332e36f7f449 /win32/makedef.pl | |
parent | 651b9576cc8d7812bbcba060854ec8a56f698aae (diff) | |
download | perl-f25172013443eb112285f24a09b83900edb8a738.tar.gz |
make safesysmalloc() etc., always available; safemalloc() et al are
now macros that point to the right malloc; fix various places in
sources that need to always use safesysmalloc() et al
p4raw-id: //depot/perl@2834
Diffstat (limited to 'win32/makedef.pl')
-rw-r--r-- | win32/makedef.pl | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/win32/makedef.pl b/win32/makedef.pl index 4e60302bcc..0d9069b9fd 100644 --- a/win32/makedef.pl +++ b/win32/makedef.pl @@ -181,14 +181,9 @@ PL_opsave if ($define{'MYMALLOC'}) { - skip_symbols [qw( - Perl_safefree - Perl_safemalloc - Perl_saferealloc - Perl_safecalloc)]; emit_symbols [qw( Perl_malloc - Perl_free + Perl_mfree Perl_realloc Perl_calloc)]; } |