summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 13:00:14 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 13:00:14 +0000
commit818623b0906812796fb921846bcfe65253b376d7 (patch)
tree8cf9bc7158bb8291714f4bfe5c41d12465727964 /TOOLS
parente1057f5898b83bbc03c8fae77615f86c0abaf5ac (diff)
downloadmpv-818623b0906812796fb921846bcfe65253b376d7.tar.bz2
mpv-818623b0906812796fb921846bcfe65253b376d7.tar.xz
Fix implicit declaration of function warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23677 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/avi-fix.c2
-rw-r--r--TOOLS/dump_mp4.c2
-rw-r--r--TOOLS/subrip.c1
3 files changed, 4 insertions, 1 deletions
diff --git a/TOOLS/avi-fix.c b/TOOLS/avi-fix.c
index 9978766dc2..d4d29bf79d 100644
--- a/TOOLS/avi-fix.c
+++ b/TOOLS/avi-fix.c
@@ -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))
diff --git a/TOOLS/dump_mp4.c b/TOOLS/dump_mp4.c
index 81cd3bcda2..dc0b837742 100644
--- a/TOOLS/dump_mp4.c
+++ b/TOOLS/dump_mp4.c
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
int main(){
int c;
unsigned int head=-1;
diff --git a/TOOLS/subrip.c b/TOOLS/subrip.c
index f05e6181ba..8c702f88fc 100644
--- a/TOOLS/subrip.c
+++ b/TOOLS/subrip.c
@@ -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>