mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 17:17:19 -04:00
12 lines
185 B
Perl
12 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
|