diff options
Diffstat (limited to 'WWW/Library')
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index ec07426a..dd562964 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.98 2010/04/29 09:13:44 tom Exp $ + * $LynxId: HTUtils.h,v 1.99 2010/09/23 20:34:05 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -542,7 +542,7 @@ extern int WWW_TraceMask; /* * Printing/scanning-formats for "off_t", as well as cast needed to fit. */ -#if defined(HAVE_INTTYPES_H) && defined(SIZEOF_OFF_T) +#if defined(HAVE_LONG_LONG) && defined(HAVE_INTTYPES_H) && defined(SIZEOF_OFF_T) #if (SIZEOF_OFF_T == 8) && defined(PRId64) #define PRI_off_t PRId64 @@ -566,7 +566,7 @@ extern int WWW_TraceMask; #endif #ifndef PRI_off_t -#if (SIZEOF_OFF_T > SIZEOF_LONG) +#if defined(HAVE_LONG_LONG) && (SIZEOF_OFF_T > SIZEOF_LONG) #define PRI_off_t "lld" #define SCN_off_t "lld" #define CAST_off_t(n) (long long)(n) @@ -580,7 +580,7 @@ extern int WWW_TraceMask; /* * Printing-format for "time_t", as well as cast needed to fit. */ -#if defined(HAVE_INTTYPES_H) && defined(SIZEOF_TIME_T) +#if defined(HAVE_LONG_LONG) && defined(HAVE_INTTYPES_H) && defined(SIZEOF_TIME_T) #if (SIZEOF_TIME_T == 8) && defined(PRId64) #define PRI_time_t PRId64 @@ -604,7 +604,7 @@ extern int WWW_TraceMask; #endif #ifndef PRI_time_t -#if (SIZEOF_TIME_T > SIZEOF_LONG) +#if defined(HAVE_LONG_LONG) && (SIZEOF_TIME_T > SIZEOF_LONG) #define PRI_time_t "lld" #define SCN_time_t "lld" #define CAST_time_t(n) (long long)(n) |