mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 06:29:41 +00:00
support the msvc specific I64 specifier in our sprintf
This commit is contained in:
parent
05c2530243
commit
15eb1c5f5e
@ -486,6 +486,18 @@ int xvsnprintf (char* Buf, size_t Size, const char* Format, va_list ap)
|
||||
}
|
||||
break;
|
||||
|
||||
/* support the MSVC specific I64 for long long */
|
||||
case 'I':
|
||||
F = *Format++;
|
||||
if (F == '6') {
|
||||
F = *Format++;
|
||||
if (F == '4') {
|
||||
F = *Format++;
|
||||
P.LengthMod = lmLongLong;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 'l':
|
||||
F = *Format++;
|
||||
if (F == 'l') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user