diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-29 17:21:24 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-29 17:21:24 +0000 |
commit | b347df820803cfaa55e1ef645ee3797402b58e10 (patch) | |
tree | 9cca51376ba2cefb330211111675c48d1be14b82 /proto.h | |
parent | bddd5118bb8dac8628019bdb9373c01f5937db98 (diff) | |
download | perl-b347df820803cfaa55e1ef645ee3797402b58e10.tar.gz |
Replace sv_catsv_mg and sv_catpvn_mg, and move the obsolete bodies to
mathoms.c
p4raw-id: //depot/perl@25885
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2507,12 +2507,12 @@ PERL_CALLCONV void Perl_sv_catpv_mg(pTHX_ SV *sv, const char *ptr) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); -PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) +/* PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) __attribute__nonnull__(pTHX_1) - __attribute__nonnull__(pTHX_2); + __attribute__nonnull__(pTHX_2); */ -PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dstr, SV *sstr) - __attribute__nonnull__(pTHX_1); +/* PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dstr, SV *sstr) + __attribute__nonnull__(pTHX_1); */ PERL_CALLCONV void Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...) __attribute__format__(__printf__,pTHX_2,pTHX_3) |