[MPlayer-cvslog] r24228 - in trunk/TOOLS/realcodecs: 14_4.c 28_8.c cook.c drv2.c drv3.c drv4.c ra.c rv30.c sipr.c

diego subversion at mplayerhq.hu
Mon Aug 27 12:16:10 CEST 2007


Author: diego
Date: Mon Aug 27 12:16:10 2007
New Revision: 24228

Log:
Fix "incompatible implicit declaration of built-in function 'exit'" warnings.


Modified:
   trunk/TOOLS/realcodecs/14_4.c
   trunk/TOOLS/realcodecs/28_8.c
   trunk/TOOLS/realcodecs/cook.c
   trunk/TOOLS/realcodecs/drv2.c
   trunk/TOOLS/realcodecs/drv3.c
   trunk/TOOLS/realcodecs/drv4.c
   trunk/TOOLS/realcodecs/ra.c
   trunk/TOOLS/realcodecs/rv30.c
   trunk/TOOLS/realcodecs/sipr.c

Modified: trunk/TOOLS/realcodecs/14_4.c
==============================================================================
--- trunk/TOOLS/realcodecs/14_4.c	(original)
+++ trunk/TOOLS/realcodecs/14_4.c	Mon Aug 27 12:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/28_8.c
==============================================================================
--- trunk/TOOLS/realcodecs/28_8.c	(original)
+++ trunk/TOOLS/realcodecs/28_8.c	Mon Aug 27 12:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

Modified: trunk/TOOLS/realcodecs/cook.c
==============================================================================
--- trunk/TOOLS/realcodecs/cook.c	(original)
+++ trunk/TOOLS/realcodecs/cook.c	Mon Aug 27 12:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.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:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.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:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.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:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 

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

Modified: trunk/TOOLS/realcodecs/rv30.c
==============================================================================
--- trunk/TOOLS/realcodecs/rv30.c	(original)
+++ trunk/TOOLS/realcodecs/rv30.c	Mon Aug 27 12:16:10 2007
@@ -11,6 +11,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.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:16:10 2007
@@ -28,6 +28,7 @@
 
 #include <stddef.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <dlfcn.h>
 #include <sys/time.h>
 



More information about the MPlayer-cvslog mailing list