]> git.sesse.net Git - vlc/commitdiff
Fixed a warning.
authorChristophe Massiot <massiot@videolan.org>
Thu, 6 Sep 2001 10:19:18 +0000 (10:19 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 6 Sep 2001 10:19:18 +0000 (10:19 +0000)
plugins/idct/idct.c
plugins/idct/idctaltivec.c
plugins/idct/idctclassic.c
plugins/idct/idctmmx.c
plugins/idct/idctmmxext.c

index f3e1c0b9a54952144fbb74dce46184492735968c..e8878a977a2df2748936096d56193e9da11f142a 100644 (file)
@@ -2,7 +2,7 @@
  * idct.c : C IDCT module
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: idct.c,v 1.15 2001/09/05 16:07:49 massiot Exp $
+ * $Id: idct.c,v 1.16 2001/09/06 10:19:18 massiot Exp $
  *
  * Author: Gaël Hendryckx <jimmy@via.ecp.fr>
  *
@@ -30,6 +30,7 @@
 #include "defs.h"
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index 3dede5e091b00d7ab2bdd20711f90e1c65a9b9fc..e4c709b38235f344a1cca108c2c27f404530747b 100644 (file)
@@ -2,7 +2,7 @@
  * idctaltivec.c : Altivec IDCT module
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: idctaltivec.c,v 1.12 2001/09/05 16:07:49 massiot Exp $
+ * $Id: idctaltivec.c,v 1.13 2001/09/06 10:19:18 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -30,6 +30,7 @@
 #include "defs.h"
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index 8d97a226771535792cafa1cc5af341abeda12070..480c47715c901493da8972dfd41e49747f7ce088 100644 (file)
@@ -2,7 +2,7 @@
  * idctclassic.c : Classic IDCT module
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: idctclassic.c,v 1.15 2001/09/05 16:07:49 massiot Exp $
+ * $Id: idctclassic.c,v 1.16 2001/09/06 10:19:18 massiot Exp $
  *
  * Authors: Gaël Hendryckx <jimmy@via.ecp.fr>
  *
@@ -30,6 +30,7 @@
 #include "defs.h"
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index 72a2032f8640beea3d4438463bcffb5f31e32cc3..4bf60cf480541f97bb332373b90d01d54c19ebcb 100644 (file)
@@ -2,7 +2,7 @@
  * idctmmx.c : MMX IDCT module
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: idctmmx.c,v 1.17 2001/09/05 16:07:49 massiot Exp $
+ * $Id: idctmmx.c,v 1.18 2001/09/06 10:19:18 massiot Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -34,6 +34,7 @@
 #include "defs.h"
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index bd773bd553f80b977f54d4bc749e242d4311ff2f..cf0c3dfb771d63d1d4fdc93c962127ab716b5540 100644 (file)
@@ -2,7 +2,7 @@
  * idctmmxext.c : MMX EXT IDCT module
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: idctmmxext.c,v 1.14 2001/09/05 16:07:49 massiot Exp $
+ * $Id: idctmmxext.c,v 1.15 2001/09/06 10:19:18 massiot Exp $
  *
  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  *          Michel Lespinasse <walken@zoy.org>
@@ -34,6 +34,7 @@
 #include "defs.h"
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 #include "common.h"