summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2005-12-04 19:37:58 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2005-12-04 19:37:58 +0000
commit715d66eeeb07fb3acde46fb36dd46fd867df552c (patch)
tree9fb12212cf3e66aa8d97d3c23a19bc61fe3d3d46 /proto.h
parent5a4d6b2b2d37d7b38b116092f744e5f5eb085d3b (diff)
downloadperl-715d66eeeb07fb3acde46fb36dd46fd867df552c.tar.gz
NULL is a legal value for newXS()'s name parameter.
(This caused strange build failures with gcc4 -O3) p4raw-id: //depot/perl@26253
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 71be05a7e4..f46b0459e8 100644
--- a/proto.h
+++ b/proto.h
@@ -1425,7 +1425,6 @@ PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o)
PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block);
PERL_CALLCONV CV* Perl_newXS(pTHX_ const char* name, XSUBADDR_t f, const char* filename)
- __attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);