diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-21 19:07:13 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-21 19:07:13 +0000 |
commit | 732aff91a557a599d8054bbc527a6aae5e3c32c4 (patch) | |
tree | b575e6682b04dbd8e17a28daa32235ef6a3198cb /makedef.pl | |
parent | bc38b8f5cb0e0ac9dd81476826983b3387640fa8 (diff) | |
download | perl-732aff91a557a599d8054bbc527a6aae5e3c32c4.tar.gz |
add missing bincompat symbols to export list
p4raw-id: //depot/perl@5861
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/makedef.pl b/makedef.pl index ab672293ac..e63034beb0 100644 --- a/makedef.pl +++ b/makedef.pl @@ -11,7 +11,11 @@ my $PLATFORM; my $CCTYPE; my %bincompat5005 = - (Perl_call_argv => "perl_call_argv", + ( + Perl_call_atexit => "perl_atexit", + Perl_eval_sv => "perl_eval_sv", + Perl_eval_pv => "perl_eval_pv", + Perl_call_argv => "perl_call_argv", Perl_call_method => "perl_call_method", Perl_call_pv => "perl_call_pv", Perl_call_sv => "perl_call_sv", @@ -34,7 +38,8 @@ my %bincompat5005 = Perl_malloc => "malloc", Perl_mfree => "free", Perl_realloc => "realloc", - Perl_calloc => "calloc",); + Perl_calloc => "calloc", + ); my $bincompat5005 = join("|", keys %bincompat5005); |