diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-30 08:38:07 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-30 08:38:07 +0000 |
commit | a9f96b3fd8bd68e3c0062e4f23c142442340b0b5 (patch) | |
tree | 490643ed9d7e00a107119e6564f7164ba9b796d1 /embed.h | |
parent | 9555a685dbd794b0e9f549335341b2a3b1ea3da5 (diff) | |
download | perl-a9f96b3fd8bd68e3c0062e4f23c142442340b0b5.tar.gz |
Replace do_aexec() with a macro to call do_aexec5() with the two extra
0 arguments. Move the old body to mathoms.c
p4raw-id: //depot/perl@25891
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -155,7 +155,6 @@ #endif #define dounwind Perl_dounwind #ifdef PERL_CORE -#define do_aexec Perl_do_aexec #define do_aexec5 Perl_do_aexec5 #endif #define do_binmode Perl_do_binmode @@ -2148,7 +2147,6 @@ #endif #define dounwind(a) Perl_dounwind(aTHX_ a) #ifdef PERL_CORE -#define do_aexec(a,b,c) Perl_do_aexec(aTHX_ a,b,c) #define do_aexec5(a,b,c,d,e) Perl_do_aexec5(aTHX_ a,b,c,d,e) #endif #define do_binmode(a,b,c) Perl_do_binmode(aTHX_ a,b,c) |