Mercurial > mplayer.hg
view linux/vsscanf.c @ 8859:fd13e4c4f323
Set is_shift_required according to RadeonFamily
rather than device_id (thanks to Marcus Blomenkamp for this idea)
Also give RV200 a seperate family from R200 as they aren't really the same.
patch by James Stembridge <jstembridge@gmx.net>
author | arpi |
---|---|
date | Thu, 09 Jan 2003 18:28:56 +0000 |
parents | 1dd8fe0776d3 |
children |
line wrap: on
line source
#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