diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-23 22:43:44 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-23 22:43:44 -0400 |
commit | 69a1a751cb798556c786e3ef66d473bf8a88abdc (patch) | |
tree | 55c14b1b4bee18bd0674173917b25f5f49f994a8 /WWW | |
parent | a9f33e9f4daa32e4f1503b40e38b3b531c34b7b0 (diff) | |
download | lynx-snapshots-69a1a751cb798556c786e3ef66d473bf8a88abdc.tar.gz |
snapshot of project "lynx", label v2-8-8dev_5d
Diffstat (limited to 'WWW')
-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) |