]> granicus.if.org Git - neomutt/commitdiff
Mention that strcasestr doesn't exist on AIX
authorPietro Cerutti <gahr@gahr.ch>
Mon, 23 Jan 2017 16:40:54 +0000 (16:40 +0000)
committerPietro Cerutti <gahr@gahr.ch>
Tue, 24 Jan 2017 20:32:46 +0000 (20:32 +0000)
Issue: #325

strcasestr.c

index a93b6af22a763f9a608190a32cc018a91e39cdc9..2f51ab8ee2bfc836fbc9bf65e08be68ba0afcae1 100644 (file)
@@ -7,6 +7,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 
+/* IBM AIX 7.1 still misses strcasestr */
 char *strcasestr(const char *s1, const char *s2)
 {
         register const char *s = s1;