Updates following review of SSL_stateless() code
[openssl.git] / test / v3nametest.c
index 0f89260c05c5d16a3d45c79b53a7d86cc9bb3aa3..d6749b7e34a6692553b8c9f933935a3a3a27cc1e 100644 (file)
@@ -8,11 +8,17 @@
  */
 
 #include <string.h>
-#include "e_os.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@", "..",