commit | e0b2687a2d972c60c744a4bdb1a3b969143e431a | [log] [tgz] |
---|---|---|
author | Ouss4 <abdelatif.guettouche@gmail.com> | Tue Aug 11 16:07:09 2020 +0100 |
committer | Ouss4 <abdelatif.guettouche@gmail.com> | Wed Aug 12 20:02:25 2020 +0100 |
tree | aec4d9b4d00dcc4de65fcb0b048e66d57e5542ee | |
parent | 0ca6d38bc375cc8f1e6f99c896f98266eaef6a12 [diff] [blame] |
Undef ASSERT before defining it to ensure that no previous definition has sneaked in through included files. Signed-off-by: Ouss4 <abdelatif.guettouche@gmail.com>
diff --git a/library/chachapoly.c b/library/chachapoly.c index d51227a..b05a145 100644 --- a/library/chachapoly.c +++ b/library/chachapoly.c
@@ -472,6 +472,9 @@ } }; +/* Make sure no other definition is already present. */ +#undef ASSERT + #define ASSERT( cond, args ) \ do \ { \