[MPlayer-cvslog] r23677 - in trunk/TOOLS: avi-fix.c dump_mp4.c subrip.c

diego subversion at mplayerhq.hu
Wed Jun 27 15:00:14 CEST 2007


Author: diego
Date: Wed Jun 27 15:00:14 2007
New Revision: 23677

Log:
Fix implicit declaration of function warnings.


Modified:
   trunk/TOOLS/avi-fix.c
   trunk/TOOLS/dump_mp4.c
   trunk/TOOLS/subrip.c

Modified: trunk/TOOLS/avi-fix.c
==============================================================================
--- trunk/TOOLS/avi-fix.c	(original)
+++ trunk/TOOLS/avi-fix.c	Wed Jun 27 15:00:14 2007
@@ -11,7 +11,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-//#include <string.h>
+#include <string.h>
 
 #define FCC(a,b,c,d)  (((a)<<24)|((b)<<16)|((c)<<8)|(d))
 

Modified: trunk/TOOLS/dump_mp4.c
==============================================================================
--- trunk/TOOLS/dump_mp4.c	(original)
+++ trunk/TOOLS/dump_mp4.c	Wed Jun 27 15:00:14 2007
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
 int main(){
 int c;
 unsigned int head=-1;

Modified: trunk/TOOLS/subrip.c
==============================================================================
--- trunk/TOOLS/subrip.c	(original)
+++ trunk/TOOLS/subrip.c	Wed Jun 27 15:00:14 2007
@@ -14,6 +14,7 @@
 #include <ctype.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/wait.h>



More information about the MPlayer-cvslog mailing list