From: Howard Chu Date: Sun, 15 Nov 2009 21:41:41 +0000 (+0000) Subject: ITS#6351 only declare memrchr if not defined by platform X-Git-Tag: ACLCHECK_0~112 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5e52ad67512d72022a19ce76bb5d7ae3db814981;p=openldap ITS#6351 only declare memrchr if not defined by platform --- diff --git a/include/ac/string.h b/include/ac/string.h index 09e2e31126..00c79d34a1 100644 --- a/include/ac/string.h +++ b/include/ac/string.h @@ -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)