diff options
author | Steve Hay <SteveHay@planit.com> | 2005-05-27 15:54:09 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-05-27 15:54:09 +0000 |
commit | ddacffcfccb8d9bc0952350f177ec6e58907d72a (patch) | |
tree | 5741ccdf60b925157ee8520c01d9032aa73f53d3 /proto.h | |
parent | 0ae089ada984d08896a4bef1b8c66f76097fe842 (diff) | |
download | perl-ddacffcfccb8d9bc0952350f177ec6e58907d72a.tar.gz |
Fix more Win32 linker errors caused by change 24561
Apparently sys_intern_init and sys_intern_clear are required even for
non-threaded builds on Win32.
p4raw-id: //depot/perl@24605
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1758,9 +1758,11 @@ PERL_CALLCONV void Perl_sys_intern_dup(pTHX_ struct interp_intern* src, struct i __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); +# endif +#endif +#if defined(HAVE_INTERP_INTERN) PERL_CALLCONV void Perl_sys_intern_clear(pTHX); PERL_CALLCONV void Perl_sys_intern_init(pTHX); -# endif #endif PERL_CALLCONV char * Perl_custom_op_name(pTHX_ const OP* op) |