diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-29 14:25:55 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-29 14:25:55 +0000 |
commit | aae9cea0a2be05abb857e6b2b32773d3d5fae6d8 (patch) | |
tree | 4ea5b941a8cdaf6c5bff5598320a28439b36dd5a /mathoms.c | |
parent | 9a265e59ce486ba81d4c53a5dd1e167baf7e65e7 (diff) | |
download | perl-aae9cea0a2be05abb857e6b2b32773d3d5fae6d8.tar.gz |
sv_taint() can easily be replaced by a macro.
p4raw-id: //depot/perl@25876
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -36,6 +36,19 @@ Perl_ref(pTHX_ OP *o, I32 type) return doref(o, type, TRUE); } +/* +=for apidoc sv_taint + +Taint an SV. Use C<SvTAINTED_on> instead. +=cut +*/ + +void +Perl_sv_taint(pTHX_ SV *sv) +{ + sv_magic((sv), Nullsv, PERL_MAGIC_taint, Nullch, 0); +} + /* sv_2iv() is now a macro using Perl_sv_2iv_flags(); * this function provided for binary compatibility only */ |