diff options
author | Andy Lester <andy@petdance.com> | 2005-04-22 12:39:47 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-04-26 21:03:43 +0000 |
commit | 88d019551b04ba7828be67e8c0f62de7f769b5d5 (patch) | |
tree | 64b8bb3ef095bb63c97562cec480a2c7687a5bbd /xsutils.c | |
parent | f7fe979eb2503f8f9651a18eedcb85278b593375 (diff) | |
download | perl-88d019551b04ba7828be67e8c0f62de7f769b5d5.tar.gz |
XS() __attribute__
Message-ID: <20050422223947.GA4681@petdance.com>
p4raw-id: //depot/perl@24333
Diffstat (limited to 'xsutils.c')
-rw-r--r-- | xsutils.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -160,7 +160,6 @@ XS(XS_attributes_bootstrap) { dXSARGS; const char file[] = __FILE__; - (void)cv; if( items > 1 ) Perl_croak(aTHX_ "Usage: attributes::bootstrap $module"); @@ -178,7 +177,6 @@ XS(XS_attributes__modify_attrs) { dXSARGS; SV *rv, *sv; - (void)cv; if (items < 1) { usage: @@ -201,7 +199,6 @@ XS(XS_attributes__fetch_attrs) dXSARGS; SV *rv, *sv; cv_flags_t cvflags; - (void)cv; if (items != 1) { usage: @@ -247,7 +244,6 @@ XS(XS_attributes__guess_stash) dXSARGS; SV *rv, *sv; dXSTARG; - (void)cv; if (items != 1) { usage: @@ -300,7 +296,6 @@ XS(XS_attributes_reftype) dXSARGS; SV *rv, *sv; dXSTARG; - (void)cv; if (items != 1) { usage: @@ -324,7 +319,6 @@ usage: XS(XS_attributes__warn_reserved) { dXSARGS; - (void)cv; if (items != 0) { Perl_croak(aTHX_ |