changeset 23305:22d3d12c6dfb

Include string.h for memcpy, fastmemcpy.h alone is not enough.
author reimar
date Wed, 16 May 2007 21:45:46 +0000
parents 7e25711f6427
children f37b8ec947ca
files gui/mplayer/common.c gui/mplayer/mw.c gui/mplayer/pb.c gui/mplayer/sw.c libmpcodecs/vd_ijpg.c libmpcodecs/vd_mtga.c
diffstat 6 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gui/mplayer/common.c	Wed May 16 12:26:47 2007 +0000
+++ b/gui/mplayer/common.c	Wed May 16 21:45:46 2007 +0000
@@ -6,6 +6,7 @@
 #include <inttypes.h>
 #include <sys/stat.h>
 #include <unistd.h>
+#include <string.h>
 
 #include "app.h"
 #include "skin/font.h"
--- a/gui/mplayer/mw.c	Wed May 16 12:26:47 2007 +0000
+++ b/gui/mplayer/mw.c	Wed May 16 21:45:46 2007 +0000
@@ -6,6 +6,7 @@
 #include <inttypes.h>
 #include <sys/stat.h>
 #include <unistd.h>
+#include <string.h>
 
 #include "gmplayer.h"
 #include "app.h"
--- a/gui/mplayer/pb.c	Wed May 16 12:26:47 2007 +0000
+++ b/gui/mplayer/pb.c	Wed May 16 21:45:46 2007 +0000
@@ -6,6 +6,7 @@
 #include <inttypes.h>
 #include <sys/stat.h>
 #include <unistd.h>
+#include <string.h>
 
 #include "app.h"
 #include "skin/font.h"
--- a/gui/mplayer/sw.c	Wed May 16 12:26:47 2007 +0000
+++ b/gui/mplayer/sw.c	Wed May 16 21:45:46 2007 +0000
@@ -2,6 +2,7 @@
 // sub window
 
 #include <inttypes.h>
+#include <string.h>
 
 #include "../config.h"
 #include "../libvo/x11_common.h"
--- a/libmpcodecs/vd_ijpg.c	Wed May 16 12:26:47 2007 +0000
+++ b/libmpcodecs/vd_ijpg.c	Wed May 16 21:45:46 2007 +0000
@@ -1,6 +1,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "mp_msg.h"
--- a/libmpcodecs/vd_mtga.c	Wed May 16 12:26:47 2007 +0000
+++ b/libmpcodecs/vd_mtga.c	Wed May 16 21:45:46 2007 +0000
@@ -6,6 +6,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "mp_msg.h"