]> git.sesse.net Git - vlc/commitdiff
Moved #include <string.h> to macosx plug-in instead of threads.h, as in
authorChristophe Massiot <massiot@videolan.org>
Thu, 29 Nov 2001 10:20:56 +0000 (10:20 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 29 Nov 2001 10:20:56 +0000 (10:20 +0000)
other plug-ins.

include/threads.h
plugins/macosx/aout_macosx.c
plugins/macosx/intf_main.c
plugins/macosx/intf_vlc_wrapper.c
plugins/macosx/macosx.h
plugins/macosx/vout_macosx.c

index a579d8edf9b4a8dc0d670a963e892bfc8584fa71..6704bc05eee69016b8bd4c776d7b297040093f89 100644 (file)
@@ -3,7 +3,7 @@
  * This header provides a portable threads implementation.
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: threads.h,v 1.29 2001/11/29 01:01:47 fgp Exp $
+ * $Id: threads.h,v 1.30 2001/11/29 10:20:56 massiot Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@via.ecp.fr>
@@ -24,7 +24,6 @@
  *****************************************************************************/
 
 #include <stdio.h>
-#include <string.h>
 
 #if defined(GPROF) || defined(DEBUG)
 #   include <sys/time.h>
index 46f9119d4e332d4983d02c3cdc0d2263fa731648..1498edd1f115c29f3a3067d6421146db94ec768b 100644 (file)
@@ -2,7 +2,7 @@
  * aout_darwin.c : Darwin audio output plugin
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: aout_macosx.c,v 1.6 2001/11/29 01:01:48 fgp Exp $
+ * $Id: aout_macosx.c,v 1.7 2001/11/29 10:20:56 massiot Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *
@@ -42,6 +42,8 @@
  *****************************************************************************/
 #include "defs.h"
 
+#include <string.h>
+
 #include "config.h"
 #include "common.h"                                     /* boolean_t, byte_t */
 #include "intf_msg.h"                        /* intf_DbgMsg(), intf_ErrMsg() */
index c4fed7c233c9d1a865d24e72e4eb122631a057ab..5cd526b3c31bb2f5517f387f6810222ddfff2ec2 100644 (file)
@@ -3,8 +3,8 @@
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
  *
- * Authors:    Colin Delacroix <colin@zoy.org>
- *             Florian G. Pflug <fgp@phlo.org>
+ * Authors: Colin Delacroix <colin@zoy.org>
+ *             Florian G. Pflug <fgp@phlo.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -31,6 +31,7 @@
 
 #include <stdlib.h>                                      /* malloc(), free() */
 #include <sys/param.h>                                    /* for MAXPATHLEN */
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index d28e8e50ea71ac79513f9e21780a22a5753331a5..e148c4c1e318f9d19b9e04f58e8db61f8473b098 100644 (file)
@@ -2,7 +2,7 @@
  * intf_vlc_wrapper.c : MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $$
+ * $Id: intf_vlc_wrapper.c,v 1.4 2001/11/29 10:20:56 massiot Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *
@@ -25,6 +25,7 @@
 
 #include <stdlib.h>                                      /* malloc(), free() */
 #include <sys/param.h>                                    /* for MAXPATHLEN */
+#include <string.h>
 
 #include "config.h"
 #include "common.h"
index 726b6ea3c8381cafc9f617a9f15166b5ad96eacd..ca0d9784316f65d1ebbf49286fcdbdf21155fa44 100644 (file)
@@ -2,7 +2,7 @@
  * macosx.h : MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $$
+ * $Id: macosx.h,v 1.3 2001/11/29 10:20:56 massiot Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *
index ca2ca8b6b33b55b34ef6055d3e98758138e6a561..aef310000289fb75186efd47bcb94dad9a628759 100644 (file)
@@ -1,4 +1,3 @@
-
 /*****************************************************************************
  * vout_macosx.c: MacOS X video output plugin
  *****************************************************************************