1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

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:
jkeil 2002-11-26 18:53:00 +00:00
parent 3a072d1e6e
commit 68b4d93587
2 changed files with 21 additions and 1 deletions

View File

@ -3,7 +3,7 @@ include ../config.mak
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)
ifeq ($(TARGET_ARCH_X86),yes)

20
linux/vsscanf.c Normal file
View File

@ -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