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

package main;
use IPC::Open3 'open3';
1