Fix macro for Windows

This commit is contained in:
Douglas Stebila 2019-06-27 10:34:56 -04:00
parent 6730a17173
commit 8cc63aeda9

View File

@ -42,7 +42,7 @@ void frodo_key_decode(uint16_t *out, const uint16_t *in);
}
#endif
#if defined(WINDOWS)
#if defined(_MSC_VER) // if using Visual Studio compiler
#define ALIGN_HEADER(N) __declspec(align(N))
#define ALIGN_FOOTER(N)
#else