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 /mathoms.c | |
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 'mathoms.c')
-rw-r--r-- | mathoms.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -636,6 +636,14 @@ Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) return PerlIO_binmode(aTHX_ fp, iotype, mode, name); } +#ifndef OS2 +bool +Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp) +{ + return do_aexec5(really, mark, sp, 0, 0); +} +#endif + #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION bool Perl_do_exec(pTHX_ const char *cmd) |