summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2001-03-24 14:31:49 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-03-24 14:31:49 +0000
commit8c0134a884f927d58f584b87281e5a27133cbf8f (patch)
treec8ab595e27dc62b04dc3888d299f0cab124d2f04 /win32/win32.c
parent5dd1177c222be3aa5f44de160a952953bc5703a5 (diff)
downloadperl-8c0134a884f927d58f584b87281e5a27133cbf8f.tar.gz
PerlIO fixups for Win32:
- provide win33_popenlist() - non-functional as yet. - avoid need for aTHX in PerlIO_debug calls - even if not enabled args are still evaluated so Win32 has trouble during fork(). - Add PerlIO/Scalar to list of extensions in win32/makefile.mk - Fixup makedef.pl for latest set of symbols. p4raw-id: //depot/perlio@9321
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 226ef9b7c0..d2d70e5506 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2356,6 +2356,14 @@ win32_pipe(int *pfd, unsigned int size, int mode)
return _pipe(pfd, size, mode);
}
+DllExport PerlIO*
+win32_popenlist(const char *mode, IV narg, SV **args)
+{
+ dTHX;
+ Perl_croak(aTHX_ "List form of pipe open not implemented");
+ return NULL;
+}
+
/*
* a popen() clone that respects PERL5SHELL
*