diff options
Diffstat (limited to 'libbb/strrstr.c')
-rw-r--r-- | libbb/strrstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |