From: Pietro Cerutti Date: Mon, 23 Jan 2017 16:40:54 +0000 (+0000) Subject: Mention that strcasestr doesn't exist on AIX X-Git-Tag: neomutt-20170128~5^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbe51def19c3b7531b003476f9d7f7c6f176d610;p=neomutt Mention that strcasestr doesn't exist on AIX Issue: #325 --- diff --git a/strcasestr.c b/strcasestr.c index a93b6af22..2f51ab8ee 100644 --- a/strcasestr.c +++ b/strcasestr.c @@ -7,6 +7,7 @@ #include #include +/* IBM AIX 7.1 still misses strcasestr */ char *strcasestr(const char *s1, const char *s2) { register const char *s = s1;