diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2012-07-05 00:57:52 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2012-07-05 00:57:52 -0400 |
commit | 033df9bda0bbbf62b5b2d55a3f638524cfdb0691 (patch) | |
tree | 9a70b70ae185db10788f6c80dc2d1fec9cda2505 /src/chrtrans | |
parent | bcb4d178a499b3665a568a381c0ac7416836666f (diff) | |
download | lynx-snapshots-033df9bda0bbbf62b5b2d55a3f638524cfdb0691.tar.gz |
snapshot of project "lynx", label v2-8-8dev_12b
Diffstat (limited to 'src/chrtrans')
-rw-r--r-- | src/chrtrans/makeuctb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chrtrans/makeuctb.c b/src/chrtrans/makeuctb.c index e76e0f6f..1cd6a28d 100644 --- a/src/chrtrans/makeuctb.c +++ b/src/chrtrans/makeuctb.c @@ -1,5 +1,5 @@ /* - * $LynxId: makeuctb.c,v 1.46 2010/09/24 09:52:56 tom Exp $ + * $LynxId: makeuctb.c,v 1.47 2012/07/04 20:58:29 tom Exp $ * * makeuctb.c, derived from conmakehash.c - kw * @@ -30,7 +30,7 @@ #define DONT_USE_SOCKS5 #include <UCDefs.h> #include <UCkd.h> -#include <LYUtils.h> +#include <ctype.h> /* * Don't try to use LYexit() since this is a standalone file. @@ -88,7 +88,7 @@ static void usage(void) } #ifdef USE_ASCII_CTYPES -int ascii_tolower(int i) +static int ascii_tolower(int i) { if (91 > i && i > 64) return (i + 32); |