tar: support -T - and -X -
[oweals/busybox.git] / libbb / bb_qsort.c
index e8673abf92aee7a30bcdbb8c1f8a218010425975..a54e7236a7e6573b2a94e85c69cedb945fb908f1 100644 (file)
@@ -4,17 +4,17 @@
  *
  * Copyright (c) 2008 Denys Vlasenko
  *
- * Licensed under GPLv2, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 
 #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);
 }