1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00

fixup for MS compilers

This commit is contained in:
bcook 2023-07-07 07:44:59 +00:00
parent 3e37c3917f
commit d6517dbd6e

View File

@ -1,4 +1,4 @@
/* $OpenBSD: aeadtest.c,v 1.23 2022/08/20 19:25:14 jsing Exp $ */
/* $OpenBSD: aeadtest.c,v 1.24 2023/07/07 07:44:59 bcook Exp $ */
/*
* Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2014, Google Inc.
@ -48,6 +48,13 @@
#define BUF_MAX 1024
/* MS defines in global headers, remove it */
#ifdef _MSC_VER
#ifdef IN
#undef IN
#endif
#endif
/* These are the different types of line that are found in the input file. */
enum {
AEAD = 0, /* name of the AEAD algorithm. */