diff options
Diffstat (limited to 'string/strcasestr.c')
-rw-r--r-- | string/strcasestr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/string/strcasestr.c b/string/strcasestr.c index 088b5d91c7..f0b2fa55bd 100644 --- a/string/strcasestr.c +++ b/string/strcasestr.c @@ -1,5 +1,5 @@ /* Return the offset of one string within another. - Copyright (C) 1994, 1996-2000, 2004, 2008, 2009 + Copyright (C) 1994, 1996-2000, 2004, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -103,4 +103,6 @@ STRCASESTR (const char *haystack_start, const char *needle_start) #undef LONG_NEEDLE_THRESHOLD +#ifndef NO_ALIAS weak_alias (__strcasestr, strcasestr) +#endif |