]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Oops. Forgot to check this is.
authorzach%zachlipton.com <>
Mon, 10 Sep 2001 02:48:14 +0000 (02:48 +0000)
committerzach%zachlipton.com <>
Mon, 10 Sep 2001 02:48:14 +0000 (02:48 +0000)
t/Support/Systemexec.pm [new file with mode: 0644]

diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm
new file mode 100644 (file)
index 0000000..eee445c
--- /dev/null
@@ -0,0 +1,12 @@
+package Systemexec;
+require Exporter;
+@ISA = qw(Exporter);
+@EXPORT = qw(system exec);
+@EXPORT_OK = qw();
+sub system($$@) {
+  1;
+}
+sub exec($$@) {
+  1;
+}
+1;