runsvd: shrink by Vladimir
[oweals/busybox.git] / libbb / strrstr.c
index f61dd517fa32f643cb99a0fe98eddcf433bcf176..d5cd44b2a2cfcd4675a3fbee5f1009d4df3c08fe 100644 (file)
@@ -19,7 +19,7 @@
  * The strrstr() function finds the last occurrence of the substring needle
  * in the string haystack. The terminating nul characters are not compared.
  */
-char* strrstr(const char *haystack, const char *needle)
+char* FAST_FUNC strrstr(const char *haystack, const char *needle)
 {
        char *r = NULL;