From a870088f94507467616007948d752871c9019e91 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Mon, 14 Oct 2024 19:58:23 +0200 Subject: [PATCH] xpath: Hide internal sort functions --- timsort.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/timsort.h b/timsort.h index 383584fb..27e34520 100644 --- a/timsort.h +++ b/timsort.h @@ -169,7 +169,9 @@ typedef struct { } TIM_SORT_RUN_T; +XML_HIDDEN void BINARY_INSERTION_SORT(SORT_TYPE *dst, const size_t size); +XML_HIDDEN void TIM_SORT(SORT_TYPE *dst, const size_t size);