summaryrefslogtreecommitdiff
path: root/lib/open3.pl
blob: 7fcc931861060f0281cbda55029292fe587f435f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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