This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix NAME section to be valid.
[perl5.git] / lib / open2.pl
CommitLineData
0111154e
Z
1warn "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
a06bfbf4
S
3# This legacy library is deprecated and will be removed in a future
4# release of perl.
5#
7e1af8bc 6# This is a compatibility interface to IPC::Open2. New programs should
7# do
ee0007ab 8#
7e1af8bc 9# use IPC::Open2;
ee0007ab 10#
7e1af8bc 11# instead of
12#
13# require 'open2.pl';
ee0007ab 14
7e1af8bc 15package main;
16use IPC::Open2 'open2';
171