[MPlayer-cvslog] r27396 - trunk/loader/win32.c

diego subversion at mplayerhq.hu
Sat Aug 2 19:09:14 CEST 2008


Author: diego
Date: Sat Aug  2 19:09:13 2008
New Revision: 27396

Log:
Do not provide a prototype for vsscanf when vsscanf is available.
Fixes a redundant redeclaration warning.


Modified:
   trunk/loader/win32.c

Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c	(original)
+++ trunk/loader/win32.c	Sat Aug  2 19:09:13 2008
@@ -75,9 +75,7 @@ for DLL to know too much about its envir
 #endif
 #include "osdep/mmap_anon.h"
 
-#if HAVE_VSSCANF
-int vsscanf( const char *str, const char *format, va_list ap);
-#else
+#ifndef HAVE_VSSCANF
 /* system has no vsscanf.  try to provide one */
 static int vsscanf( const char *str, const char *format, va_list ap)
 {



More information about the MPlayer-cvslog mailing list