diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-08-02 17:09:13 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-08-02 17:09:13 +0000 |
commit | 7d6022deba055ec45f78c1fd91e827c175d2af48 (patch) | |
tree | ac0b49a1428ced97e038a2d2709c4e954f2c6cbf | |
parent | 96a506733dbb62b0fdfc29d46d49f03e0057c53b (diff) |
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
-rw-r--r-- | loader/win32.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/loader/win32.c b/loader/win32.c index 9bc7062f68..29e7348616 100644 --- a/loader/win32.c +++ b/loader/win32.c @@ -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) { |