diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2006-05-24 17:44:20 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2006-05-24 17:44:20 +0000 |
commit | f8f4df2cf8e87992bf31e881472eda35f193685f (patch) | |
tree | 3d6f34b3e0894b63ed9ccbf5527970e982bd4ae0 /pod | |
parent | 7b4e746973783c054fecf3c05862fea4b7fd94cd (diff) | |
download | perl-f8f4df2cf8e87992bf31e881472eda35f193685f.tar.gz |
Run 'make regen' for changes 28299, 28300, 28301.
p4raw-id: //depot/perl@28302
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 1e3a27ea2d..d852746a79 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -4311,7 +4311,7 @@ X<SvREFCNT_inc_simple_void> 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<sv> 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<SvREFCNT_inc_void> 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<sv> 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<sv_catpvs> Like C<sv_catpvn>, 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<sv_setpvs> Like C<sv_setpvn>, 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 |