about summary refs log tree commit diff stats
path: root/src/chrtrans
diff options
context:
space:
mode:
Diffstat (limited to 'src/chrtrans')
-rw-r--r--src/chrtrans/makeuctb.c6
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);