From 99f0c52b7eb350c614808cf3c60930d0efc95e29 Mon Sep 17 00:00:00 2001 From: marcan Date: Thu, 26 Mar 2009 03:45:52 +0100 Subject: [PATCH] Turn off long longs again in vsprintf, epic fail --- vsprintf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vsprintf.c b/vsprintf.c index a72af67..8d09a41 100644 --- a/vsprintf.c +++ b/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