summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-03-11 22:00:54 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-03-11 22:00:54 +0000
commitb475b3e6a1638a2b29a69388e329b434337632a8 (patch)
treee6b116f971385e2696a638aaad71fddcabcba934 /perlio.c
parentc63dfae1e0dd3ff2a89e180471b2ec48a0f2dec6 (diff)
downloadperl-b475b3e6a1638a2b29a69388e329b434337632a8.tar.gz
WinCE tweaks from Vadim Konovalov.
p4raw-id: //depot/perl@18935
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/perlio.c b/perlio.c
index 9cb12d0e60..1cd8baba2a 100644
--- a/perlio.c
+++ b/perlio.c
@@ -2768,6 +2768,10 @@ PerlIOStdio_invalidate_fileno(pTHX_ FILE *f)
# elif defined(WIN32)
# if defined(__BORLANDC__)
f->fd = PerlLIO_dup(fileno(f));
+# elif defined(UNDER_CE)
+ /* WIN_CE does not have access to FILE internals, it hardly has FILE
+ structure at all
+ */
# else
f->_file = -1;
# endif