summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-02-10 17:44:34 +0000
committerNicholas Clark <nick@ccl4.org>2008-02-10 17:44:34 +0000
commitf3dc127a728cf3f7200c6a1a89ee625c7781d94c (patch)
treec588ef14cb1a554583afdabde18968417caee4c2 /proto.h
parent9f6cc744b0938e4177a1aff14a9bfc8b8f96c6bc (diff)
downloadperl-f3dc127a728cf3f7200c6a1a89ee625c7781d94c.tar.gz
vcroak()'s pattern is actually NULLOK.
p4raw-id: //depot/perl@33272
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index d8ee5a4f2b..de32d128d1 100644
--- a/proto.h
+++ b/proto.h
@@ -246,8 +246,7 @@ PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...)
__attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2);
PERL_CALLCONV void Perl_vcroak(pTHX_ const char* pat, va_list* args)
- __attribute__noreturn__
- __attribute__nonnull__(pTHX_1);
+ __attribute__noreturn__;
#if defined(PERL_IMPLICIT_CONTEXT)
PERL_CALLCONV void Perl_croak_nocontext(const char* pat, ...)