summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbcook <>2023-07-07 07:44:59 +0000
committerbcook <>2023-07-07 07:44:59 +0000
commitfe4df3897d663e6706d15e040ccef08ef5643eb0 (patch)
tree69b4a1fdf811929846fb685bc7ca0a419dfe0df3 /src
parent8ec0f288746ef0197965cf8c262dd2e89fba308e (diff)
downloadopenbsd-fe4df3897d663e6706d15e040ccef08ef5643eb0.tar.gz
openbsd-fe4df3897d663e6706d15e040ccef08ef5643eb0.tar.bz2
openbsd-fe4df3897d663e6706d15e040ccef08ef5643eb0.zip
fixup for MS compilers
Diffstat (limited to 'src')
-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. */