diff options
author | Andreas König <a.koenig@mind.de> | 1997-11-27 18:18:53 +0100 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-27 16:57:33 +0000 |
commit | ad8d18a8e157392f6bca3ec2bd8549397e756d90 (patch) | |
tree | 15b5b218777256b824c840869434d37312d04e37 /sv.c | |
parent | f0bea234ec0a451a052c1e57903238c612bb1c20 (diff) | |
download | perl-ad8d18a8e157392f6bca3ec2bd8549397e756d90.tar.gz |
Fix prototypes of sv_vsetpvfn and sv_vcatpvfn:
Subject: Re: ANNOUNCE: perl 5.004_55 is available
p4raw-id: //depot/perl@323
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4099,14 +4099,14 @@ sv_catpvf(sv, pat, va_alist) } void -sv_vsetpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, char *used_locale) +sv_vsetpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *used_locale) { sv_setpvn(sv, "", 0); sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, used_locale); } void -sv_vcatpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, char *used_locale) +sv_vcatpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *used_locale) { dTHR; char *p; |