# HG changeset patch # User Mike Becker # Date 1766357955 -3600 # Node ID 67834d3e45d0e4bfe286698c4b499189f8b0afb5 # Parent 85fd3ff8416ebc0ac2162119a1855eec342caa9f# Parent 27037c1b14e0aca7f9faa04825faf60ca2f1c251 merge remote changes diff -r 85fd3ff8416e -r 67834d3e45d0 src/array_list.c --- a/src/array_list.c Sun Dec 21 23:58:30 2025 +0100 +++ b/src/array_list.c Sun Dec 21 23:59:15 2025 +0100 @@ -356,8 +356,8 @@ } #ifndef WITH_QSORT_R -static thread_local cx_compare_func2 cx_array_fn_for_qsort; -static thread_local void *cx_array_context_for_qsort; +static _Thread_local cx_compare_func2 cx_array_fn_for_qsort; +static _Thread_local void *cx_array_context_for_qsort; static int cx_array_qsort_wrapper(const void *l, const void *r) { return cx_array_fn_for_qsort(l, r, cx_array_context_for_qsort); }