Systemexec.pm 210 Bytes
Newer Older
1 2 3
# -*- Mode: perl; indent-tabs-mode: nil -*-

package Support::Systemexec;
4 5 6 7 8 9 10 11 12 13 14
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(system exec);
@EXPORT_OK = qw();
sub system($$@) {
  1;
}
sub exec($$@) {
  1;
}
1;