From: Marcus Holland-Moritz Date: Wed, 24 May 2006 17:44:20 +0000 (+0000) Subject: Run 'make regen' for changes 28299, 28300, 28301. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f8f4df2cf8e87992bf31e881472eda35f193685f;p=p5sagit%2Fp5-mst-13.2.git Run 'make regen' for changes 28299, 28300, 28301. p4raw-id: //depot/perl@28302 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 1e3a27e..d852746 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -4311,7 +4311,7 @@ X Same as SvREFCNT_inc_simple, but can only be used if you don't need the return value. The macro doesn't need to return a meaningful value. - SV* SvREFCNT_inc_simple_void(SV* sv) + void SvREFCNT_inc_simple_void(SV* sv) =for hackers Found in file sv.h @@ -4324,7 +4324,7 @@ value, and you know that I is not NULL. The macro doesn't need to return a meaningful value, or check for NULLness, so it's smaller and faster. - SV* SvREFCNT_inc_simple_void_NN(SV* sv) + void SvREFCNT_inc_simple_void_NN(SV* sv) =for hackers Found in file sv.h @@ -4335,7 +4335,7 @@ X Same as SvREFCNT_inc, but can only be used if you don't need the return value. The macro doesn't need to return a meaningful value. - SV* SvREFCNT_inc_void(SV* sv) + void SvREFCNT_inc_void(SV* sv) =for hackers Found in file sv.h @@ -4348,7 +4348,7 @@ value, and you know that I is not NULL. The macro doesn't need to return a meaningful value, or check for NULLness, so it's smaller and faster. - SV* SvREFCNT_inc_void_NN(SV* sv) + void SvREFCNT_inc_void_NN(SV* sv) =for hackers Found in file sv.h @@ -5068,7 +5068,7 @@ X Like C, but takes a literal string instead of a string/length pair. - SV* sv_catpvs(SV* sv, const char* s) + void sv_catpvs(SV* sv, const char* s) =for hackers Found in file handy.h @@ -5660,7 +5660,7 @@ X Like C, but takes a literal string instead of a string/length pair. - SV* sv_setpvs(SV* sv, const char* s) + void sv_setpvs(SV* sv, const char* s) =for hackers Found in file handy.h diff --git a/proto.h b/proto.h index 94357e7..baafa91 100644 --- a/proto.h +++ b/proto.h @@ -4338,6 +4338,7 @@ PERL_CALLCONV int Perl_my_sprintf(char *buffer, const char *pat, ...) #endif PERL_CALLCONV int Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) + __attribute__format__(__printf__,3,4) __attribute__nonnull__(1) __attribute__nonnull__(3);