Updates following review of SSL_stateless() code
[openssl.git] / test / v3nametest.c
index 36f8df646c2a11f8933db2fe90533bb5bf025a55..d6749b7e34a6692553b8c9f933935a3a3a27cc1e 100644 (file)
@@ -8,11 +8,17 @@
  */
 
 #include <string.h>
-#include <internal/nelem.h>
+
+#include <openssl/e_os2.h>
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
+#include "internal/nelem.h"
 #include "testutil.h"
 
+#ifdef OPENSSL_SYS_WINDOWS
+# define strcasecmp _stricmp
+#endif
+
 static const char *const names[] = {
     "a", "b", ".", "*", "@",
     ".a", "a.", ".b", "b.", ".*", "*.", "*@", "@*", "a@", "@a", "b@", "..",