diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
commit | 20ce7b12268a3d32b5b246928de5084322e709cf (patch) | |
tree | 395ce45dee07dabd92553cbcdad9b91e37e8ae49 /pod/perlguts.pod | |
parent | 0221c164222f9d91820826506118f46ffa08dd46 (diff) | |
download | perl-20ce7b12268a3d32b5b246928de5084322e709cf.tar.gz |
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index ad4c702b07..2c6d3a2e75 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2775,7 +2775,7 @@ Returns a boolean indicating whether the SV is derived from the specified class. This is the function that implements C<UNIVERSAL::isa>. It works for class names as well as for objects. - bool sv_derived_from _((SV* sv, const char* name)); + bool sv_derived_from (SV* sv, const char* name); =item SvEND @@ -3402,18 +3402,18 @@ Processes its arguments like C<vsprintf> and appends the formatted output to an SV. Uses an array of SVs if the C style variable argument list is missing (NULL). Indicates if locale information has been used for formatting. - void sv_catpvfn _((SV* sv, const char* pat, STRLEN patlen, - va_list *args, SV **svargs, I32 svmax, - bool *used_locale)); + void sv_catpvfn (SV* sv, const char* pat, STRLEN patlen, + va_list *args, SV **svargs, I32 svmax, + bool *used_locale); =item sv_vsetpvfn(sv, pat, patlen, args, svargs, svmax, used_locale) Works like C<vcatpvfn> but copies the text into the SV instead of appending it. - void sv_setpvfn _((SV* sv, const char* pat, STRLEN patlen, - va_list *args, SV **svargs, I32 svmax, - bool *used_locale)); + void sv_setpvfn (SV* sv, const char* pat, STRLEN patlen, + va_list *args, SV **svargs, I32 svmax, + bool *used_locale); =item SvUV |