"Overload" SunOS 4.x memcmp, which ruins ASN1_OBJECT table lookups [from HEAD].
[openssl.git] / crypto / o_str.h
index 744a6e27d39ae912dc0af5f6af559fe5910bf2e4..dfc98494c6c5481174645d6a0236b4412231af84 100644 (file)
 #ifndef HEADER_O_STR_H
 #define HEADER_O_STR_H
 
-#include <string.h>
+#include <stddef.h>            /* to get size_t */
 
 int OPENSSL_strcasecmp(const char *str1, const char *str2);
 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
+int OPENSSL_memcmp(const void *p1,const void *p2,size_t n);
 
 #endif