diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-27 13:00:14 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-27 13:00:14 +0000 |
commit | 818623b0906812796fb921846bcfe65253b376d7 (patch) | |
tree | 8cf9bc7158bb8291714f4bfe5c41d12465727964 | |
parent | e1057f5898b83bbc03c8fae77615f86c0abaf5ac (diff) |
Fix implicit declaration of function warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23677 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | TOOLS/avi-fix.c | 2 | ||||
-rw-r--r-- | TOOLS/dump_mp4.c | 2 | ||||
-rw-r--r-- | TOOLS/subrip.c | 1 |
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> |