From 5e52ad67512d72022a19ce76bb5d7ae3db814981 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sun, 15 Nov 2009 21:41:41 +0000 Subject: [PATCH] ITS#6351 only declare memrchr if not defined by platform --- include/ac/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5