From dcd846f4e75a65911ac82259fb309a534622cbd6 Mon Sep 17 00:00:00 2001 From: Charles Bailey Date: Mon, 28 Feb 2000 03:42:38 +0000 Subject: [PATCH] Defer inclusion of VMS-specific code to runtime p4raw-id: //depot/vmsperl@5306 --- t/io/openpid.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/io/openpid.t b/t/io/openpid.t index fca7fcf..fc71e7a 100755 --- a/t/io/openpid.t +++ b/t/io/openpid.t @@ -80,7 +80,7 @@ autoflush FH4 1; print FH4 "ok 9\n"; print "# waiting for process $pid4 to exit\n"; #VMS: Send an EOF to convince the subprocess to exit as well -if ($^O eq 'VMS') { use VMS::Stdio qw(&writeof); writeof(FH4); } +if ($^O eq 'VMS') { require VMS::Stdio; VMS::Stdio::writeof(FH4); } $reap_pid = waitpid $pid4, 0; print "# reaped pid $reap_pid != $pid4\nnot " unless $reap_pid == $pid4; -- 2.7.4