diff options
Diffstat (limited to 'lib/libcrypto/hidden/openssl/stack.h')
-rw-r--r-- | lib/libcrypto/hidden/openssl/stack.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libcrypto/hidden/openssl/stack.h b/lib/libcrypto/hidden/openssl/stack.h index 671735436fc..38bb02e8690 100644 --- a/lib/libcrypto/hidden/openssl/stack.h +++ b/lib/libcrypto/hidden/openssl/stack.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stack.h,v 1.1 2022/11/11 19:18:55 beck Exp $ */ +/* $OpenBSD: stack.h,v 1.2 2023/07/05 21:14:54 bcook Exp $ */ /* * Copyright (c) 2022 Bob Beck <beck@openbsd.org> * @@ -18,7 +18,11 @@ #ifndef _LIBCRYPTO_STACK_H #define _LIBCRYPTO_STACK_H +#ifndef _MSC_VER #include_next <openssl/stack.h> +#else +#include "../include/openssl/stack.h" +#endif #include "crypto_namespace.h" LCRYPTO_USED(sk_num); |