(svn r18919) -Fix (r15371): strcasestr() return should not be const

This commit is contained in:
glx
2010-01-26 14:04:56 +00:00
parent 078e1edabc
commit 918b3aff5e
2 changed files with 3 additions and 3 deletions

View File

@@ -256,7 +256,7 @@ char *strndup(const char *s, size_t len);
# undef DEFINE_STRCASESTR
#else
# define DEFINE_STRCASESTR
const char *strcasestr(const char *haystack, const char *needle);
char *strcasestr(const char *haystack, const char *needle);
#endif /* strcasestr is available */
#endif /* STRING_FUNC_H */