[Mplayer-cvslog] CVS: main dec_video.c,1.60,1.61 dll_init.c,1.32,1.33
pl
pl at mplayer.dev.hu
Fri Nov 9 03:17:03 CET 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv25376
Modified Files:
dec_video.c dll_init.c
Log Message:
added missing #include <malloc.h>
#include "config.h" moved as 1st #include since it defines HAVE_foo_h for
later conditional inclusions
Index: dec_video.c
===================================================================
RCS file: /cvsroot/mplayer/main/dec_video.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- dec_video.c 5 Nov 2001 15:47:21 -0000 1.60
+++ dec_video.c 9 Nov 2001 02:17:00 -0000 1.61
@@ -1,9 +1,13 @@
+#include "config.h"
+
#include <stdio.h>
+#ifdef HAVE_MALLOC_H
+#include <malloc.h>
+#endif
#include <stdlib.h>
#include <unistd.h>
-#include "config.h"
#include "mp_msg.h"
#include "help_mp.h"
Index: dll_init.c
===================================================================
RCS file: /cvsroot/mplayer/main/dll_init.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- dll_init.c 5 Nov 2001 14:59:51 -0000 1.32
+++ dll_init.c 9 Nov 2001 02:17:00 -0000 1.33
@@ -1,9 +1,13 @@
+#include "config.h"
+
#include <stdio.h>
+#ifdef HAVE_MALLOC_H
+#include <malloc.h>
+#endif
#include <stdlib.h>
#include <unistd.h>
-#include "config.h"
#include "mp_msg.h"
#include "help_mp.h"
More information about the MPlayer-cvslog
mailing list