- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / bb_qsort.c
index e8673abf92aee7a30bcdbb8c1f8a218010425975..9773afa6e5141ae8c9d82a6948c41f87d51d13ee 100644 (file)
@@ -9,12 +9,12 @@
 
 #include "libbb.h"
 
-int bb_pstrcmp(const void *a, const void *b)
+int /* not FAST_FUNC! */ bb_pstrcmp(const void *a, const void *b)
 {
        return strcmp(*(char**)a, *(char**)b);
 }
 
-void qsort_string_vector(char **sv, unsigned count)
+void FAST_FUNC qsort_string_vector(char **sv, unsigned count)
 {
        qsort(sv, count, sizeof(char*), bb_pstrcmp);
 }