summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-06-27 07:39:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-06-27 07:39:58 +0000
commita06433151b0f1a3a12ccc4d2629feb511ea9fce6 (patch)
tree7a792ed00e298f50f76ed78fb7ae11da1599ee29 /proto.h
parentd0d2ba8fa784ab4c88f64ef679c2c1ff6203412a (diff)
downloadperl-a06433151b0f1a3a12ccc4d2629feb511ea9fce6.tar.gz
Make doing_taint() always available (though not
part of the public API). p4raw-id: //depot/perl@19862
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index fee6d0a9c0..3c3776dccd 100644
--- a/proto.h
+++ b/proto.h
@@ -26,6 +26,7 @@ PERL_CALLCONV int perl_destruct(PerlInterpreter* interp);
PERL_CALLCONV void perl_free(PerlInterpreter* interp);
PERL_CALLCONV int perl_run(PerlInterpreter* interp);
PERL_CALLCONV int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env);
+PERL_CALLCONV int Perl_doing_taint(int argc, char** argv, char** env);
#if defined(USE_ITHREADS)
PERL_CALLCONV PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags);
# if defined(PERL_IMPLICIT_SYS)