diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-04-01 19:59:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-04-01 19:59:54 +0000 |
commit | 84335ee93339f99a0959258e640fa57e9f0ba6ab (patch) | |
tree | 7c83dc66076dbcac80f82d9dbccab64fc801578a /proto.h | |
parent | 27aecdc667df7df9dfe00209a819ab9abfc274ea (diff) | |
download | perl-84335ee93339f99a0959258e640fa57e9f0ba6ab.tar.gz |
Define sv_insert() as a wrapper to sv_insert_flags(), and move
Perl_sv_insert() to mathoms.c
p4raw-id: //depot/perl@33627
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3179,9 +3179,9 @@ PERL_CALLCONV char* Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen) assert(sv) PERL_CALLCONV void Perl_sv_inc(pTHX_ SV *const sv); -PERL_CALLCONV void Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen) +/* PERL_CALLCONV void Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen) __attribute__nonnull__(pTHX_1) - __attribute__nonnull__(pTHX_4); + __attribute__nonnull__(pTHX_4); */ #define PERL_ARGS_ASSERT_SV_INSERT \ assert(bigstr); assert(little) |