diff dct-test.c @ 5379:e9f8a337c5ce libavcodec

Fix the compilation of dct-test, fft-test and motion-test which are using random().
author takis
date Thu, 19 Jul 2007 08:46:28 +0000
parents 4dbe6578f811
children f4859c13426b
line wrap: on
line diff
--- a/dct-test.c	Thu Jul 19 02:21:14 2007 +0000
+++ b/dct-test.c	Thu Jul 19 08:46:28 2007 +0000
@@ -42,6 +42,7 @@
 #endif
 
 #undef printf
+#undef random
 
 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);};