ITS#6351 only declare memrchr if not defined by platform

This commit is contained in:
Howard Chu 2009-11-15 21:41:41 +00:00
parent 4cabc24269
commit 5e52ad6751

View File

@ -98,8 +98,8 @@ int (strncasecmp)();
#ifndef HAVE_MEMRCHR
#undef memrchr
#define memrchr lutil_memrchr
#endif /* ! HAVE_MEMRCHR */
void * memrchr(const void *b, int c, size_t len);
#endif /* ! HAVE_MEMRCHR */
#define STRLENOF(s) (sizeof(s)-1)