This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
89552e8
)
I infer that change 25891 as-is would break OS2. This should fix it.
author
Nicholas Clark
<nick@ccl4.org>
Sun, 30 Oct 2005 16:41:02 +0000
(16:41 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Sun, 30 Oct 2005 16:41:02 +0000
(16:41 +0000)
p4raw-id: //depot/perl@25899
perl.h
patch
|
blob
|
blame
|
history
diff --git
a/perl.h
b/perl.h
index
8427328
..
10fcd4b
100644
(file)
--- a/
perl.h
+++ b/
perl.h
@@
-5402,8
+5402,10
@@
extern void moncontrol(int);
/* do_exec is a real function implemented in a platform specific file. */
# define do_exec Perl_do_exec
#endif
-#ifndef OS2
-#define do_aexec(really, mark,sp) do_aexec5(really, mark, sp, 0, 0)
+#ifdef OS2
+# define do_aexec Perl_do_aexec
+#else
+# define do_aexec(really, mark,sp) do_aexec5(really, mark, sp, 0, 0)
#endif
/* and finally... */