This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
9f4d5a40a40df3c96a05b66117aef016bfc05f04
[perl5.git] / lib / open3.pl
1 warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n";
2
3 # This legacy library is deprecated and will be removed in a future
4 # release of perl.
5 #
6 # This is a compatibility interface to IPC::Open3.  New programs should
7 # do
8 #
9 #     use IPC::Open3;
10 #
11 # instead of
12 #
13 #     require 'open3.pl';
14
15 package main;
16 use IPC::Open3 'open3';
17 1