diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-02 08:28:51 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-02 08:28:51 +0000 |
commit | de72a0a2f83a7d3d3d50d7d56d6f442eb3778175 (patch) | |
tree | c08fc091c87423011618c590a853d5e943a801b7 /proto.h | |
parent | 7fc811cca11d30db90c233d254557669191be8d8 (diff) | |
download | perl-de72a0a2f83a7d3d3d50d7d56d6f442eb3778175.tar.gz |
Since pulling in File::Temp for tempfiles would pull in
also Fcntl, miniperl could not open up tempfiles. This broke
the use of miniperl in VMS, as noticed by Craig Berry.
Try to cure this by moving the creation of tempfile into its
own routine, my_tmpfp(), which gets compiled differently
for miniperl and perl.
p4raw-id: //depot/perl@19656
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -920,6 +920,8 @@ PERL_CALLCONV void Perl_sv_nolocking(pTHX_ SV *); PERL_CALLCONV void Perl_sv_nounlocking(pTHX_ SV *); PERL_CALLCONV int Perl_nothreadhook(pTHX); +PERL_CALLCONV PerlIO* Perl_my_tmpfp(pTHX); + END_EXTERN_C #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT) |