[MPlayer-cvslog] r32762 - in trunk/osdep: glob-win.c macosx_finder_args.c mmap-os2.c strsep.c timer-darwin.c

diego subversion at mplayerhq.hu
Thu Jan 6 13:25:34 CET 2011


Author: diego
Date: Thu Jan  6 13:25:33 2011
New Revision: 32762

Log:
Add/remove a few standard header #includes in our libc function replacements.

Modified:
   trunk/osdep/glob-win.c
   trunk/osdep/macosx_finder_args.c
   trunk/osdep/mmap-os2.c
   trunk/osdep/strsep.c
   trunk/osdep/timer-darwin.c

Modified: trunk/osdep/glob-win.c
==============================================================================
--- trunk/osdep/glob-win.c	Thu Jan  6 13:21:48 2011	(r32761)
+++ trunk/osdep/glob-win.c	Thu Jan  6 13:25:33 2011	(r32762)
@@ -18,6 +18,8 @@
 
 #include <sys/types.h>
 #include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 
 #include "config.h"
 

Modified: trunk/osdep/macosx_finder_args.c
==============================================================================
--- trunk/osdep/macosx_finder_args.c	Thu Jan  6 13:21:48 2011	(r32761)
+++ trunk/osdep/macosx_finder_args.c	Thu Jan  6 13:25:33 2011	(r32762)
@@ -18,6 +18,8 @@
 
 #include <Carbon/Carbon.h>
 #include <ApplicationServices/ApplicationServices.h>
+#include <stdio.h>
+
 #include "stream/url.h"
 #include "mp_msg.h"
 #include "m_option.h"

Modified: trunk/osdep/mmap-os2.c
==============================================================================
--- trunk/osdep/mmap-os2.c	Thu Jan  6 13:21:48 2011	(r32761)
+++ trunk/osdep/mmap-os2.c	Thu Jan  6 13:25:33 2011	(r32762)
@@ -26,6 +26,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <io.h>
+#include <unistd.h>
 #include <sys/types.h>
 
 #include "config.h"

Modified: trunk/osdep/strsep.c
==============================================================================
--- trunk/osdep/strsep.c	Thu Jan  6 13:21:48 2011	(r32761)
+++ trunk/osdep/strsep.c	Thu Jan  6 13:25:33 2011	(r32762)
@@ -18,7 +18,6 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#include <stdio.h>
 #include <string.h>
 
 #include "config.h"

Modified: trunk/osdep/timer-darwin.c
==============================================================================
--- trunk/osdep/timer-darwin.c	Thu Jan  6 13:21:48 2011	(r32761)
+++ trunk/osdep/timer-darwin.c	Thu Jan  6 13:25:33 2011	(r32762)
@@ -16,6 +16,7 @@
  */
 
 #include <unistd.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <time.h>
 #include <math.h>


More information about the MPlayer-cvslog mailing list