LibC: Make qsort_swap static

There is no need to export this
This commit is contained in:
2026-07-20 04:07:23 +03:00
parent 511ab7e99c
commit f0e95ffe48
+1 -1
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) switch (width)
{ {