LibC: Make qsort_swap static

There is no need to export this
This commit is contained in:
2026-07-10 00:25:58 +03:00
parent 511ab7e99c
commit f0e95ffe48

View File

@@ -574,7 +574,7 @@ static void qsort_swap_generic(void* lhs, void* rhs, size_t width)
}
}
void qsort_swap(void* lhs, void* rhs, size_t width)
static void qsort_swap(void* lhs, void* rhs, size_t width)
{
switch (width)
{