]> granicus.if.org Git - neomutt/commitdiff
Remove str(n)casecmp declarations
authorPietro Cerutti <gahr@gahr.ch>
Mon, 23 Jan 2017 14:33:49 +0000 (14:33 +0000)
committerPietro Cerutti <gahr@gahr.ch>
Tue, 24 Jan 2017 20:32:46 +0000 (20:32 +0000)
Issue: #325

protos.h

index 583295e9210a462a34d3f6328c0e81e3f2b61d40..b318c802ef9305bfe3f8f49d5bf61986426c75da 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -501,10 +501,6 @@ extern char *sys_errlist[];
 #define memmove(d,s,n) bcopy((s),(d),(n))
 #endif
 
-/* AIX doesn't define these in any headers (sigh) */
-int strcasecmp (const char *, const char *);
-int strncasecmp (const char *, const char *, size_t);
-
 #ifdef _AIX
 int setegid (gid_t);
 #endif /* _AIX */
@@ -568,11 +564,6 @@ int ci_send_message (int, HEADER *, char *, CONTEXT *, HEADER *);
 int setenv (const char *, const char *, int);
 #endif
 
-#ifndef HAVE_STRCASECMP
-int strcasecmp (char *, char *);
-int strncasecmp (char *, char *, size_t);
-#endif
-
 #ifndef HAVE_STRSEP
 char *strsep (char **, const char *);
 #endif