diff options
Diffstat (limited to 'strings/apr_snprintf.c')
-rw-r--r-- | strings/apr_snprintf.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/strings/apr_snprintf.c b/strings/apr_snprintf.c index 9e826938d..30648e7da 100644 --- a/strings/apr_snprintf.c +++ b/strings/apr_snprintf.c @@ -90,21 +90,17 @@ typedef enum { #ifndef TRUE #define TRUE 1 #endif -#ifndef APR_LONGEST_LONG -#define APR_LONGEST_LONG long -#endif #define NUL '\0' #define WIDE_INT long -#define WIDEST_INT APR_LONGEST_LONG typedef WIDE_INT wide_int; typedef unsigned WIDE_INT u_wide_int; -typedef WIDEST_INT widest_int; +typedef apr_int64_t widest_int; #ifdef __TANDEM /* Although Tandem supports "long long" there is no unsigned variant. */ typedef unsigned long u_widest_int; #else -typedef unsigned WIDEST_INT u_widest_int; +typedef apr_uint64_t u_widest_int; #endif typedef int bool_int; |