diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-03 09:34:23 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-03 09:34:23 +0000 |
commit | 58c0efa57789d77088d564834046e633a5c42edc (patch) | |
tree | 8ad8fa3e14072793d267b4fc84308e8d2d9f63cc /xsutils.c | |
parent | 7dfde25db661bada3e1f19c61513f0bac481ca05 (diff) | |
download | perl-58c0efa57789d77088d564834046e633a5c42edc.tar.gz |
Compilation warnings fixes by Jerry D. Hedden
p4raw-id: //depot/perl@30447
Diffstat (limited to 'xsutils.c')
-rw-r--r-- | xsutils.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -161,6 +161,7 @@ XS(XS_attributes_bootstrap) { dVAR; dXSARGS; + PERL_UNUSED_ARG(cv); if( items > 1 ) Perl_croak(aTHX_ "Usage: attributes::bootstrap $module"); @@ -178,6 +179,7 @@ XS(XS_attributes__modify_attrs) dVAR; dXSARGS; SV *rv, *sv; + PERL_UNUSED_ARG(cv); if (items < 1) { usage: @@ -201,6 +203,7 @@ XS(XS_attributes__fetch_attrs) dXSARGS; SV *rv, *sv; cv_flags_t cvflags; + PERL_UNUSED_ARG(cv); if (items != 1) { usage: @@ -247,6 +250,7 @@ XS(XS_attributes__guess_stash) dXSARGS; SV *rv, *sv; dXSTARG; + PERL_UNUSED_ARG(cv); if (items != 1) { usage: @@ -296,6 +300,7 @@ XS(XS_attributes_reftype) dXSARGS; SV *rv, *sv; dXSTARG; + PERL_UNUSED_ARG(cv); if (items != 1) { usage: |