mescc: Support binutils 2.25: vsscanf: Skip `l'.
* lib/libc+tcc.c (vsscanf): Skip `l'.
This commit is contained in:
parent
49bcea84fd
commit
0639e3faf1
|
@ -819,6 +819,8 @@ vsscanf (char const *s, char const *template, va_list ap)
|
|||
{
|
||||
t++;
|
||||
char c = *t;
|
||||
if (c == 'l')
|
||||
c = *++t;
|
||||
switch (c)
|
||||
{
|
||||
case '%': {p++; break;}
|
||||
|
|
Loading…
Reference in a new issue