diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2003-05-11 15:37:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2003-05-11 15:37:14 +0000 |
commit | 23f519f064273e3cc195f02d4e0e49cf7c9329a8 (patch) | |
tree | 9ebc17e9a7bac8e64aff728140176a475a33a76b /win32/win32.h | |
parent | d782915283e79abc8a89d4bd0d3f0ae9357b87bb (diff) | |
download | perl-23f519f064273e3cc195f02d4e0e49cf7c9329a8.tar.gz |
fix Embed.t failure on windows: PERL_SYS_TERM() is implemented
in terms of an exported function rather than as an inlined
macro (latter wants PL_op_mutex which isn't exported as such)
Jarkko: please merge into maint-5.8
p4raw-id: //depot/perl@19484
Diffstat (limited to 'win32/win32.h')
-rw-r--r-- | win32/win32.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index 01b22f19ae..f4102c3c64 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -275,6 +275,7 @@ extern int mkstemp(const char *path); #define init_os_extras Perl_init_os_extras DllExport void Perl_win32_init(int *argcp, char ***argvp); +DllExport void Perl_win32_term(void); DllExport void Perl_init_os_extras(void); DllExport void win32_str_os_error(void *sv, DWORD err); DllExport int RunPerl(int argc, char **argv, char **env); |