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                                  \
     {                                   \