summaryrefslogtreecommitdiffstats
path: root/fake_packages/Getopt
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-16 20:12:05 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-16 20:12:05 +0000
commitccb342a04165847e3721438041521a4ce64eda30 (patch)
treee3777d8635ec1917ea93177d00bcb4fefb9f8e79 /fake_packages/Getopt
parent233e7cb1e9b215df6b3daa07222bde80ba89b7cf (diff)
downloadperl_checker-ccb342a04165847e3721438041521a4ce64eda30.tar
perl_checker-ccb342a04165847e3721438041521a4ce64eda30.tar.gz
perl_checker-ccb342a04165847e3721438041521a4ce64eda30.tar.bz2
perl_checker-ccb342a04165847e3721438041521a4ce64eda30.tar.xz
perl_checker-ccb342a04165847e3721438041521a4ce64eda30.zip
update fake packages with function expecting any number of arguments (reduce perl_checker SNR)
Diffstat (limited to 'fake_packages/Getopt')
-rw-r--r--fake_packages/Getopt/Long.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fake_packages/Getopt/Long.pm b/fake_packages/Getopt/Long.pm
index dad875e..a8a14ac 100644
--- a/fake_packages/Getopt/Long.pm
+++ b/fake_packages/Getopt/Long.pm
@@ -2,10 +2,10 @@
package Getopt::Long;
our @ISA = qw();
sub ConfigDefaults() {}
-sub Configure { my ($_o_options) = @_ }
+sub Configure { my (@_more_paras) = @_ }
sub FindOption { my ($_argv, $_prefix, $_argend, $_opt, $_o_opctl) = @_ }
sub GetOptions(@) {}
-sub GetOptionsFromArray(@) { my ($_argv, $_o_optionlist) = @_ }
+sub GetOptionsFromArray(@) { my ($_argv, @_more_paras) = @_ }
sub GetOptionsFromString(@) {}
sub HelpMessage(@) {}
sub OptCtl { my ($_o_v) = @_ }
@@ -20,10 +20,10 @@ sub setup_pa_args($@) {}
package Getopt::Long::CallBack;
our @ISA = qw();
sub name() {}
-sub new { my ($_pkg, $_o_atts) = @_ }
+sub new { my ($_pkg, @_more_paras) = @_ }
package Getopt::Long::Parser;
our @ISA = qw();
sub configure() {}
sub getoptions() {}
-sub new { my ($_o_atts) = @_ }
+sub new { my (@_more_paras) = @_ }