X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fstrrstr.c;h=d5cd44b2a2cfcd4675a3fbee5f1009d4df3c08fe;hb=08ea11ab0749a7977e6d47cd0fa7b3c9cc10af32;hp=f61dd517fa32f643cb99a0fe98eddcf433bcf176;hpb=1363f0df150e26c9457a8ccbe35580843bae3319;p=oweals%2Fbusybox.git diff --git a/libbb/strrstr.c b/libbb/strrstr.c index f61dd517f..d5cd44b2a 100644 --- a/libbb/strrstr.c +++ b/libbb/strrstr.c @@ -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;