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++;
|
t++;
|
||||||
char c = *t;
|
char c = *t;
|
||||||
|
if (c == 'l')
|
||||||
|
c = *++t;
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case '%': {p++; break;}
|
case '%': {p++; break;}
|
||||||
|
|
Loading…
Reference in a new issue