[MPlayer-cvslog] r30678 - trunk/libmpcodecs/vd_dmo.c
diego
subversion at mplayerhq.hu
Sun Feb 21 13:48:57 CET 2010
Author: diego
Date: Sun Feb 21 13:48:56 2010
New Revision: 30678
Log:
Add malloc.h #include for memalign(), fixes the warning:
libmpcodecs/vd_dmo.c:81: warning: implicit declaration of function 'memalign'
Modified:
trunk/libmpcodecs/vd_dmo.c
Modified: trunk/libmpcodecs/vd_dmo.c
==============================================================================
--- trunk/libmpcodecs/vd_dmo.c Sat Feb 20 22:53:11 2010 (r30677)
+++ trunk/libmpcodecs/vd_dmo.c Sun Feb 21 13:48:56 2010 (r30678)
@@ -16,12 +16,15 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#include "config.h"
+
+#if HAVE_MALLOC_H
+#include <malloc.h>
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
-#include "config.h"
-
#include "mp_msg.h"
#include "help_mp.h"
More information about the MPlayer-cvslog
mailing list