summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-10-29 14:25:55 +0000
committerNicholas Clark <nick@ccl4.org>2005-10-29 14:25:55 +0000
commitaae9cea0a2be05abb857e6b2b32773d3d5fae6d8 (patch)
tree4ea5b941a8cdaf6c5bff5598320a28439b36dd5a /mathoms.c
parent9a265e59ce486ba81d4c53a5dd1e167baf7e65e7 (diff)
downloadperl-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.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index d58beb8bcb..f165ba487b 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -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
*/