File: Systemexec.pm

package info (click to toggle)
bugzilla 2.14.2-0woody4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,460 kB
  • ctags: 435
  • sloc: perl: 19,533; sh: 235; makefile: 180
file content (14 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- Mode: perl; indent-tabs-mode: nil -*-

package Support::Systemexec;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(system exec);
@EXPORT_OK = qw();
sub system($$@) {
  1;
}
sub exec($$@) {
  1;
}
1;