Patch by David D. Kilzer <ddkilzer@theracingworld.com> Additional edits by myself to add the emacs mode line. Also, the change to runtests.sh was done by me. git-svn-id: svn://10.0.0.236/trunk@105842 18797224-902f-48f8-a5cc-f745e15eee43
15 lines
210 B
Perl
15 lines
210 B
Perl
# -*- 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;
|