traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / str_tolower.c
index 037f717c745f1410ba2c38ef5a886c5fa4f79553..f402e8e6f6a75ef219a7e0530b3cbfbfe92915ac 100644 (file)
@@ -4,7 +4,8 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 #include "libbb.h"
-char* str_tolower(char *str)
+
+char* FAST_FUNC str_tolower(char *str)
 {
        char *c;
        for (c = str; *c; ++c)