mirror of
https://github.com/mirror/wget.git
synced 2025-01-19 08:40:36 +08:00
[svn] Use S >= 8' rather than
S == 8' when looking for large integers.
This commit is contained in:
parent
448a61fb83
commit
3f8a70c227
@ -1,3 +1,8 @@
|
||||
2003-10-30 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
|
||||
large integers.
|
||||
|
||||
2003-10-30 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* url.c (append_uri_pathel): New argument ESCAPED_P that says
|
||||
|
@ -146,12 +146,12 @@ do { \
|
||||
typedef long LARGE_INT;
|
||||
# define LARGE_INT_FMT "%ld"
|
||||
#else
|
||||
# if SIZEOF_LONG_LONG == 8
|
||||
# if SIZEOF_LONG_LONG >= 8
|
||||
/* Long long is large enough: use it. */
|
||||
typedef long long LARGE_INT;
|
||||
# define LARGE_INT_FMT "%lld"
|
||||
# else
|
||||
/* Use `double'. */
|
||||
/* Large integer type unavailable; use `double' instead. */
|
||||
typedef double LARGE_INT;
|
||||
# define LARGE_INT_FMT "%.0f"
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user