diff aes.c @ 423:cf0184d7d6d7 libavutil

Fix test program compilation, random() needs to be undefined.
author diego
date Tue, 08 Jan 2008 22:40:25 +0000
parents f9a4c04ebb0e
children 880c6441f56a
line wrap: on
line diff
--- a/aes.c	Mon Jan 07 13:19:38 2008 +0000
+++ b/aes.c	Tue Jan 08 22:40:25 2008 +0000
@@ -194,6 +194,8 @@
 #ifdef TEST
 #include "log.h"
 
+#undef random
+
 int main(void){
     int i,j;
     AVAES ae, ad, b;