summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-09-28 14:03:49 -0600
committerKarl Williamson <khw@cpan.org>2022-09-30 07:01:47 -0600
commit85a4f4c4517f44d3809493240f1a9b503244c7ad (patch)
tree476ac9ff7761252cb55f62328475716fa0b285b9 /proto.h
parente31c458ba106743af1db34149b866b2c5f9d406b (diff)
downloadperl-85a4f4c4517f44d3809493240f1a9b503244c7ad.tar.gz
Add pTHX to thread_locale_(init|term)
A future commit will want the context for more than just DEBUGGING builds.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 6c34d16d9e..06b6710ee5 100644
--- a/proto.h
+++ b/proto.h
@@ -4355,9 +4355,9 @@ PERL_CALLCONV void Perl_taint_env(pTHX);
PERL_CALLCONV void Perl_taint_proper(pTHX_ const char* f, const char *const s);
#define PERL_ARGS_ASSERT_TAINT_PROPER \
assert(s)
-PERL_CALLCONV void Perl_thread_locale_init(void);
+PERL_CALLCONV void Perl_thread_locale_init(pTHX);
#define PERL_ARGS_ASSERT_THREAD_LOCALE_INIT
-PERL_CALLCONV void Perl_thread_locale_term(void);
+PERL_CALLCONV void Perl_thread_locale_term(pTHX);
#define PERL_ARGS_ASSERT_THREAD_LOCALE_TERM
PERL_CALLCONV OP * Perl_tied_method(pTHX_ SV *methname, SV **sp, SV *const sv, const MAGIC *const mg, const U32 flags, U32 argc, ...)
__attribute__visibility__("hidden");