From: Marcus Boerger Date: Fri, 8 Jul 2005 20:19:38 +0000 (+0000) Subject: - Fix *printf(%lld) under windows X-Git-Tag: php-5.1.0b3~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1717ed8e65b6cb2aac11ea1c29cba1e5622c6dd;p=php - Fix *printf(%lld) under windows --- diff --git a/main/snprintf.h b/main/snprintf.h index f921ad14cd..2ffd2a7a6b 100644 --- a/main/snprintf.h +++ b/main/snprintf.h @@ -13,6 +13,7 @@ | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Stig Sæther Bakken | + | Marcus Boerger | +----------------------------------------------------------------------+ */ @@ -114,7 +115,7 @@ extern char * ap_php_gcvt(double number, int ndigit, char *buf, boolean_e altfor # define WIDE_INT long long int #elif SIZEOF_LONG_LONG # define WIDE_INT long long -#elif _WIN64 +#elif PHP_WIN32 # define WIDE_INT __int64 #else # define WIDE_INT long