1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-21 07:16:56 +00:00

Do not provide a prototype for vsscanf when vsscanf is available.

Fixes a redundant redeclaration warning.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27396 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-08-02 17:09:13 +00:00
parent 96a506733d
commit 7d6022deba

View File

@ -75,9 +75,7 @@ for DLL to know too much about its environment.
#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)
{