diff options
author | bcook <> | 2023-07-07 07:44:59 +0000 |
---|---|---|
committer | bcook <> | 2023-07-07 07:44:59 +0000 |
commit | ff3b387e5174bcab413248207feaf6caff7df2e4 (patch) | |
tree | 69b4a1fdf811929846fb685bc7ca0a419dfe0df3 /src | |
parent | f7311fa38af140970fbce9879df494c74cf88bbe (diff) | |
download | openbsd-ff3b387e5174bcab413248207feaf6caff7df2e4.tar.gz openbsd-ff3b387e5174bcab413248207feaf6caff7df2e4.tar.bz2 openbsd-ff3b387e5174bcab413248207feaf6caff7df2e4.zip |
fixup for MS compilers
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/aead/aeadtest.c | 9 |
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. */ |
52 | enum { | 59 | enum { |
53 | AEAD = 0, /* name of the AEAD algorithm. */ | 60 | AEAD = 0, /* name of the AEAD algorithm. */ |