summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-07 17:35:10 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-07 17:35:10 +0000
commitf49ed1dab8c52e58c3b45270b50ae23e7886790c (patch)
tree1bc9e0e2ccd5008090f07b45b8c5c7f36d6a90c8 /proto.h
parent66a1b24beb76ea873ad4caa57ee3ab9df945afbf (diff)
downloadperl-f49ed1dab8c52e58c3b45270b50ae23e7886790c.tar.gz
Change 24733 allows several pointers to be NULL. Therefore this
should be reflected in their attributes. p4raw-id: //depot/perl@24736
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/proto.h b/proto.h
index d0ed02b4ba..9f5ced823e 100644
--- a/proto.h
+++ b/proto.h
@@ -1346,24 +1346,19 @@ PERL_CALLCONV NV Perl_sv_2nv(pTHX_ SV* sv)
__attribute__nonnull__(pTHX_1);
/* PERL_CALLCONV char* sv_2pv(pTHX_ SV* sv, STRLEN* lp)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_2); */
+ __attribute__nonnull__(pTHX_1); */
PERL_CALLCONV char* Perl_sv_2pv_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_2);
+ __attribute__nonnull__(pTHX_1);
PERL_CALLCONV char* Perl_sv_2pvutf8(pTHX_ SV* sv, STRLEN* lp)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_2);
+ __attribute__nonnull__(pTHX_1);
PERL_CALLCONV char* Perl_sv_2pvbyte(pTHX_ SV* sv, STRLEN* lp)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_2);
+ __attribute__nonnull__(pTHX_1);
PERL_CALLCONV char* Perl_sv_pvn_nomg(pTHX_ SV* sv, STRLEN* lp)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_2);
+ __attribute__nonnull__(pTHX_1);
/* PERL_CALLCONV UV sv_2uv(pTHX_ SV* sv)
__attribute__nonnull__(pTHX_1); */