summaryrefslogtreecommitdiff
path: root/win32/win32iop.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2003-06-02 18:44:34 +0000
committerGurusamy Sarathy <gsar@cpan.org>2003-06-02 18:44:34 +0000
commit3a8ae1affddf8a9aac8746965f2ae13c7af42aba (patch)
treed36a43ec45b7cbc3b84eed59b4d0bfc171cc457d /win32/win32iop.h
parentdc694082e66bcad1c2faeb08a1c5832719339050 (diff)
downloadperl-3a8ae1affddf8a9aac8746965f2ae13c7af42aba.tar.gz
don't use File::Temp to implement PerlIO_tmpfile() on windows;
reuse the straightforward native implementation instead this fixes the warning from io_xs.t NOTE: File::Temp has a less-than-robust implementation on windows that relies on END blocks being run (this may not happen always) p4raw-id: //depot/perl@19667
Diffstat (limited to 'win32/win32iop.h')
-rw-r--r--win32/win32iop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32iop.h b/win32/win32iop.h
index e835b2eea6..1683e97e54 100644
--- a/win32/win32iop.h
+++ b/win32/win32iop.h
@@ -67,6 +67,7 @@ DllExport int win32_fseek(FILE *pf,Off_t offset,int origin);
DllExport int win32_fgetpos(FILE *pf,fpos_t *p);
DllExport int win32_fsetpos(FILE *pf,const fpos_t *p);
DllExport void win32_rewind(FILE *pf);
+DllExport int win32_tmpfd(void);
DllExport FILE* win32_tmpfile(void);
DllExport void win32_abort(void);
DllExport int win32_fstat(int fd,Stat_t *sbufptr);