mirror of
https://github.com/mirror/wget.git
synced 2025-02-11 04:11:08 +08:00
[svn] Fixed definition of TOLOWER when STANDALONE.
This commit is contained in:
parent
46c94e5f26
commit
2fc7e59e06
@ -1,3 +1,8 @@
|
|||||||
|
2006-03-06 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* hash.c (TOLOWER): Fix definition when STANDALONE.
|
||||||
|
Reported by Beni Serfaty.
|
||||||
|
|
||||||
2006-03-02 Mauro Tortonesi <mauro@ferrara.linux.it>
|
2006-03-02 Mauro Tortonesi <mauro@ferrara.linux.it>
|
||||||
|
|
||||||
* http.c (http_loop): Fixed recursive HTTP retrieval.
|
* http.c (http_loop): Fixed recursive HTTP retrieval.
|
||||||
|
@ -53,7 +53,8 @@ so, delete this exception statement from your version. */
|
|||||||
# ifndef countof
|
# ifndef countof
|
||||||
# define countof(x) (sizeof (x) / sizeof ((x)[0]))
|
# define countof(x) (sizeof (x) / sizeof ((x)[0]))
|
||||||
# endif
|
# endif
|
||||||
# define TOLOWER(x) ('A' <= (x) && (x) <= 'Z' ? (x) - 32 : (x))
|
# include <ctype.h>
|
||||||
|
# define TOLOWER(x) tolower ((unsigned char) x)
|
||||||
# if __STDC_VERSION__ >= 199901L
|
# if __STDC_VERSION__ >= 199901L
|
||||||
# include <stdint.h> /* for uintptr_t */
|
# include <stdint.h> /* for uintptr_t */
|
||||||
# else
|
# else
|
||||||
|
Loading…
Reference in New Issue
Block a user