summaryrefslogtreecommitdiff
path: root/perlapi.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-11 03:39:07 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-11 03:39:07 +0000
commit52853b95ebed443e023862f2a1db2614404699e5 (patch)
tree716f2d199f85543401f4e5818d0eaa6d67d6baf1 /perlapi.c
parentb4bcd66247e5bc9051bd228e0f63bc1a5ffcf2a7 (diff)
downloadperl-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.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/perlapi.c b/perlapi.c
index fc71fb381b..125c6e1003 100644
--- a/perlapi.c
+++ b/perlapi.c
@@ -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