summaryrefslogtreecommitdiff
path: root/pp_proto.h
diff options
context:
space:
mode:
authorJames Raspass <jraspass@gmail.com>2022-06-11 23:33:31 +0100
committerTony Cook <tony@develop-help.com>2022-07-05 11:17:31 +1000
commita02b8151f9b69201233f9ca5774db280c34684de (patch)
treec783043e3e74ece3c98f4c71d828aa4eb571adc5 /pp_proto.h
parentc5327cb77526e4e4c7bb83e24be20ac48e85b1fa (diff)
downloadperl-a02b8151f9b69201233f9ca5774db280c34684de.tar.gz
Add builtin::is_tainted
Also tweak the implementation of the other two boolean builtins (is_bool & is_weak) to be slightly more efficient.
Diffstat (limited to 'pp_proto.h')
-rw-r--r--pp_proto.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pp_proto.h b/pp_proto.h
index 07f5366864..83516cdf66 100644
--- a/pp_proto.h
+++ b/pp_proto.h
@@ -134,6 +134,7 @@ PERL_CALLCONV OP *Perl_pp_int(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_introcv(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_ioctl(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_is_bool(pTHX) __attribute__visibility__("hidden");
+PERL_CALLCONV OP *Perl_pp_is_tainted(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_is_weak(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_isa(pTHX) __attribute__visibility__("hidden");
PERL_CALLCONV OP *Perl_pp_iter(pTHX) __attribute__visibility__("hidden");