From 6596544fef79b37ed08c4bf8433df8779093ec9a Mon Sep 17 00:00:00 2001 From: "zach%zachlipton.com" <> Date: Mon, 10 Sep 2001 02:48:14 +0000 Subject: [PATCH] Oops. Forgot to check this is. --- t/Support/Systemexec.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 t/Support/Systemexec.pm diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm new file mode 100644 index 0000000000..eee445c14a --- /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; -- 2.47.3