summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-10-03 17:17:06 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-10-03 17:17:06 +0000
commit854c7772a076157a3183a04e74b3e61ff02649da (patch)
tree45323c3771f0bfbb94da31302c0d1bbfb98d1755
parent70564011218ab5eef38842412af9313b2a133f69 (diff)
downloadxine-lib-854c7772a076157a3183a04e74b3e61ff02649da.tar.gz
xine-lib-854c7772a076157a3183a04e74b3e61ff02649da.tar.bz2
Add missing <string.h> header, for memset/memcpy prototypes.
CVS patchset: 730 CVS date: 2001/10/03 17:17:06
-rw-r--r--src/liba52/imdct_mlib.c1
-rw-r--r--src/libmpeg2/xine_decoder.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/liba52/imdct_mlib.c b/src/liba52/imdct_mlib.c
index dba4b0af3..2ec6639b8 100644
--- a/src/liba52/imdct_mlib.c
+++ b/src/liba52/imdct_mlib.c
@@ -24,6 +24,7 @@
#ifdef LIBA52_MLIB
#include <inttypes.h>
+#include <string.h>
#include <mlib_types.h>
#include <mlib_status.h>
#include <mlib_signal.h>
diff --git a/src/libmpeg2/xine_decoder.c b/src/libmpeg2/xine_decoder.c
index 4358230bb..012e24a5f 100644
--- a/src/libmpeg2/xine_decoder.c
+++ b/src/libmpeg2/xine_decoder.c
@@ -17,13 +17,14 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.14 2001/09/18 11:36:03 jkeil Exp $
+ * $Id: xine_decoder.c,v 1.15 2001/10/03 17:17:06 jkeil Exp $
*
* stuff needed to turn libmpeg2 into a xine decoder plugin
*/
#include <stdlib.h>
+#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>