summaryrefslogtreecommitdiff
path: root/lib/open2.pl
blob: 5c24a3c1b2ea3105eae9ac3c1a1142a5ca1ec72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This legacy library is deprecated and will be removed in a future
# release of perl.
#
# This is a compatibility interface to IPC::Open2.  New programs should
# do
#
#     use IPC::Open2;
#
# instead of
#
#     require 'open2.pl';

warn( "The 'open2.pl' legacy library is deprecated and will be"
      . " removed in the next major release of perl. Please use the"
      . " IPC::Open2 module instead." );

package main;
use IPC::Open2 'open2';
1