[MPlayer-cvslog] r24230 - in trunk/TOOLS/realcodecs: cook.c drv2.c drv3.c drv4.c sipr.c

diego subversion at mplayerhq.hu
Mon Aug 27 12:32:46 CEST 2007


Author: diego
Date: Mon Aug 27 12:32:46 2007
New Revision: 24230

Log:
Fix a ton of warnings:
warning: incompatible implicit declaration of built-in function 'memset'
warning: incompatible implicit declaration of built-in function 'memcpy'


Modified:
   trunk/TOOLS/realcodecs/cook.c
   trunk/TOOLS/realcodecs/drv2.c
   trunk/TOOLS/realcodecs/drv3.c
   trunk/TOOLS/realcodecs/drv4.c
   trunk/TOOLS/realcodecs/sipr.c

Modified: trunk/TOOLS/realcodecs/cook.c
==============================================================================
--- trunk/TOOLS/realcodecs/cook.c	(original)
+++ trunk/TOOLS/realcodecs/cook.c	Mon Aug 27 12:32:46 2007
@@ -12,6 +12,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/drv2.c
==============================================================================
--- trunk/TOOLS/realcodecs/drv2.c	(original)
+++ trunk/TOOLS/realcodecs/drv2.c	Mon Aug 27 12:32:46 2007
@@ -12,6 +12,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/drv3.c
==============================================================================
--- trunk/TOOLS/realcodecs/drv3.c	(original)
+++ trunk/TOOLS/realcodecs/drv3.c	Mon Aug 27 12:32:46 2007
@@ -12,6 +12,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/drv4.c
==============================================================================
--- trunk/TOOLS/realcodecs/drv4.c	(original)
+++ trunk/TOOLS/realcodecs/drv4.c	Mon Aug 27 12:32:46 2007
@@ -12,6 +12,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/sipr.c
==============================================================================
--- trunk/TOOLS/realcodecs/sipr.c	(original)
+++ trunk/TOOLS/realcodecs/sipr.c	Mon Aug 27 12:32:46 2007
@@ -29,6 +29,7 @@
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 



More information about the MPlayer-cvslog mailing list