diff options
author | Dan Sugalski <dan@sidhe.org> | 2001-05-02 11:23:22 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-02 18:31:37 +0000 |
commit | a69a6dba78e6feba230971324444d5b3e5cc9bda (patch) | |
tree | bb462716eafb5ebe2aa7c397cc7b3b41c166ddf8 | |
parent | 82e239e7a1ea777ddd36194e1dcefc6427be98da (diff) | |
download | perl-a69a6dba78e6feba230971324444d5b3e5cc9bda.tar.gz |
Re: [PATCH 5.6.1] Multiplicity and thread fixes for VMS
Message-Id: <5.0.2.1.0.20010502152210.01f65550@24.8.96.48>
p4raw-id: //depot/perl@9966
-rw-r--r-- | perl.c | 4 | ||||
-rw-r--r-- | vms/vms.c | 3 |
2 files changed, 2 insertions, 5 deletions
@@ -1304,11 +1304,7 @@ print \" \\@INC:\\n @INC\\n\";"); (*xsinit)(aTHXo); /* in case linked C routines want magical variables */ #ifndef PERL_MICRO #if defined(VMS) || defined(WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(EPOC) -# if defined(VMS) - init_os_extras(aTHXo); -# else init_os_extras(); -# endif #endif #endif @@ -6727,8 +6727,9 @@ mod2fname(pTHX_ CV *cv) } void -init_os_extras(pTHX) +init_os_extras() { + dTHX; char* file = __FILE__; char temp_buff[512]; if (my_trnlnm("DECC$DISABLE_TO_VMS_LOGNAME_TRANSLATION", temp_buff, 0)) { |