From 6596544fef79b37ed08c4bf8433df8779093ec9a Mon Sep 17 00:00:00 2001 From: "zach%zachlipton.com" <> Date: Mon, 10 Sep 2001 02:48:14 +0000 Subject: Oops. Forgot to check this is. --- t/Support/Systemexec.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 t/Support/Systemexec.pm (limited to 't/Support/Systemexec.pm') diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm new file mode 100644 index 000000000..eee445c14 --- /dev/null +++ b/t/Support/Systemexec.pm @@ -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; -- cgit v1.2.3-24-g4f1b