diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-11 03:39:07 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-11 03:39:07 +0000 |
commit | 52853b95ebed443e023862f2a1db2614404699e5 (patch) | |
tree | 716f2d199f85543401f4e5818d0eaa6d67d6baf1 /perlapi.c | |
parent | b4bcd66247e5bc9051bd228e0f63bc1a5ffcf2a7 (diff) | |
download | perl-52853b95ebed443e023862f2a1db2614404699e5.tar.gz |
PL_sys_intern was being initialized too late on windows
p4raw-id: //depot/perl@6104
Diffstat (limited to 'perlapi.c')
-rw-r--r-- | perlapi.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -3943,6 +3943,15 @@ Perl_ptr_table_split(pTHXo_ PTR_TBL_t *tbl) ((CPerlObj*)pPerl)->Perl_ptr_table_split(tbl); } #endif +#if defined(HAVE_INTERP_INTERN) + +#undef Perl_sys_intern_init +void +Perl_sys_intern_init(pTHXo) +{ + ((CPerlObj*)pPerl)->Perl_sys_intern_init(); +} +#endif #if defined(PERL_OBJECT) #else #endif |