Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 4940da71bfb17387e5554b8f9e74be089d8eb45d
https://github.com/Perl/perl5/commit/4940da71bfb17387e5554b8f9e74be089d8eb45d
Author: Karl Williamson <[email protected]>
Date: 2023-03-02 (Thu, 02 Mar 2023)
Changed paths:
M mg.c
Log Message:
-----------
mg.c: Fix OS2 compilation error
This was spotted by code reading and not by any real box to try this on.
It shows that OS2 can't have been successfully compiled on blead for
some time.
Commit: 23cd30579a4eb2bf637e54408630220da0416463
https://github.com/Perl/perl5/commit/23cd30579a4eb2bf637e54408630220da0416463
Author: Karl Williamson <[email protected]>
Date: 2023-03-02 (Thu, 02 Mar 2023)
Changed paths:
M embed.fnc
M embed.h
M mg.c
M proto.h
Log Message:
-----------
mg.c: Split out functionality to a seprate function
This commit creates a function that gets the extended errno on systems
(such as VMS and Windows) that have that, returning plain errno on
systems that don't. Previously this code was interweaved into code with
a larger purpose. The splitting makes it possible for other code that
just wants the errno to get it.
The new function is callable from elsewhere in core, but remains private
for now. In principal it could be documented and made public if needed.
Compare: https://github.com/Perl/perl5/compare/decdc447b5ba...23cd30579a4e