In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/084b56d791cbec7ea432275f145ade3b5441904d?hp=7dc65651902f0390dfb92783b32c0b4976885475>
- Log ----------------------------------------------------------------- commit 084b56d791cbec7ea432275f145ade3b5441904d Author: Daniel Dragan <[email protected]> Date: Tue Oct 9 23:17:47 2012 -0400 add PERL_CALLCONV_NO_RET to perlhost.h's PerlProcExit and PerlProc_Exit This gives noreturn to the 2 functions on Visual C Perl. ----------------------------------------------------------------------- Summary of changes: win32/perlhost.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/perlhost.h b/win32/perlhost.h index f2bb133..3f18126 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -1534,13 +1534,13 @@ PerlProcCrypt(struct IPerlProc* piPerl, const char* clear, const char* salt) return win32_crypt(clear, salt); } -void +PERL_CALLCONV_NO_RET void PerlProcExit(struct IPerlProc* piPerl, int status) { exit(status); } -void +PERL_CALLCONV_NO_RET void PerlProc_Exit(struct IPerlProc* piPerl, int status) { _exit(status); -- Perl5 Master Repository
