mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 12:19:21 +01:00
Turn off long longs again in vsprintf, epic fail
This commit is contained in:
parent
77ca5f888c
commit
99f0c52b7e
10
vsprintf.c
10
vsprintf.c
@ -99,11 +99,11 @@
|
||||
#define VA_START(ap, last) va_start(ap, last)
|
||||
#define VA_SHIFT(ap, value, type) /* No-op for ANSI C. */
|
||||
|
||||
#define ULLONG unsigned long long
|
||||
#define UINTMAX_T unsigned long long
|
||||
#define UINTMAX_MAX ULLONG_MAX
|
||||
#define LLONG long long
|
||||
#define INTMAX_T long long
|
||||
#define ULLONG unsigned long
|
||||
#define UINTMAX_T unsigned long
|
||||
#define UINTMAX_MAX ULONG_MAX
|
||||
#define LLONG long
|
||||
#define INTMAX_T long
|
||||
|
||||
/* Support for uintptr_t. */
|
||||
#ifndef UINTPTR_T
|
||||
|
Loading…
Reference in New Issue
Block a user