summaryrefslogtreecommitdiffstats
path: root/osdep/vsscanf.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
commitb2c4df0543c3de1725763511eca658a055209f36 (patch)
tree618dd9e22574f0928d6c6bf09d28cf7096955e75 /osdep/vsscanf.c
parent4cb9cfc6eead9bb182159d20a425baaaf01d9927 (diff)
downloadmpv-b2c4df0543c3de1725763511eca658a055209f36.tar.bz2
mpv-b2c4df0543c3de1725763511eca658a055209f36.tar.xz
Move #ifdef directives around complete files into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/vsscanf.c')
-rw-r--r--osdep/vsscanf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/osdep/vsscanf.c b/osdep/vsscanf.c
index 0252ac287f..8a7ccf98b7 100644
--- a/osdep/vsscanf.c
+++ b/osdep/vsscanf.c
@@ -1,6 +1,5 @@
#include "config.h"
-#ifndef HAVE_VSSCANF
/* system has no vsscanf. try to provide one */
#include <stdio.h>
@@ -17,4 +16,3 @@ vsscanf(const char *str, const char *format, va_list ap)
long p5 = va_arg(ap, long);
return sscanf(str, format, p1, p2, p3, p4, p5);
}
-#endif