mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-10 14:02:43 +00:00
13 lines
185 B
Perl
13 lines
185 B
Perl
# This is a compatibility interface to IPC::Open2. New programs should
|
|
# do
|
|
#
|
|
# use IPC::Open2;
|
|
#
|
|
# instead of
|
|
#
|
|
# require 'open2.pl';
|
|
|
|
package main;
|
|
use IPC::Open2 'open2';
|
|
1
|