summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/aead/aeadtest.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/aead/aeadtest.c b/src/regress/lib/libcrypto/aead/aeadtest.c
index 2c798a2918..4d24a81768 100644
--- a/src/regress/lib/libcrypto/aead/aeadtest.c
+++ b/src/regress/lib/libcrypto/aead/aeadtest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aeadtest.c,v 1.23 2022/08/20 19:25:14 jsing Exp $ */ 1/* $OpenBSD: aeadtest.c,v 1.24 2023/07/07 07:44:59 bcook Exp $ */
2/* 2/*
3 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2014, Google Inc. 4 * Copyright (c) 2014, Google Inc.
@@ -48,6 +48,13 @@
48 48
49#define BUF_MAX 1024 49#define BUF_MAX 1024
50 50
51/* MS defines in global headers, remove it */
52#ifdef _MSC_VER
53#ifdef IN
54#undef IN
55#endif
56#endif
57
51/* These are the different types of line that are found in the input file. */ 58/* These are the different types of line that are found in the input file. */
52enum { 59enum {
53 AEAD = 0, /* name of the AEAD algorithm. */ 60 AEAD = 0, /* name of the AEAD algorithm. */