mirror of https://github.com/mpv-player/mpv
Add our own vsscanf implementation, in case the system's libc does not have
one. (required for solaris, when the Ogg/Vorbis audio decoder is used) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8291 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3a072d1e6e
commit
68b4d93587
|
@ -3,7 +3,7 @@ include ../config.mak
|
||||||
|
|
||||||
LIBNAME = libosdep.a
|
LIBNAME = libosdep.a
|
||||||
|
|
||||||
SRCS=getch2.c timer-lx.c shmem.c strsep.c scandir.c # timer.c
|
SRCS=getch2.c timer-lx.c shmem.c strsep.c vsscanf.c scandir.c # timer.c
|
||||||
OBJS=$(SRCS:.c=.o)
|
OBJS=$(SRCS:.c=.o)
|
||||||
|
|
||||||
ifeq ($(TARGET_ARCH_X86),yes)
|
ifeq ($(TARGET_ARCH_X86),yes)
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
#include "../config.h"
|
||||||
|
|
||||||
|
#ifndef HAVE_VSSCANF
|
||||||
|
/* system has no vsscanf. try to provide one */
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
vsscanf(const char *str, const char *format, va_list ap)
|
||||||
|
{
|
||||||
|
/* XXX: can this be implemented in a more portable way? */
|
||||||
|
long p1 = va_arg(ap, long);
|
||||||
|
long p2 = va_arg(ap, long);
|
||||||
|
long p3 = va_arg(ap, long);
|
||||||
|
long p4 = va_arg(ap, long);
|
||||||
|
long p5 = va_arg(ap, long);
|
||||||
|
return sscanf(str, format, p1, p2, p3, p4, p5);
|
||||||
|
}
|
||||||
|
#endif
|
Loading…
Reference in New Issue