This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Refactor inccode.t to use is_miniperl() instead of $ENV{PERL_CORE_MINITEST}
[perl5.git] / lib / open2.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::Open2.  New programs should
7 # do
8 #
9 #     use IPC::Open2;
10 #
11 # instead of
12 #
13 #     require 'open2.pl';
14
15 package main;
16 use IPC::Open2 'open2';
17 1