summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2009-01-05 05:01:04 +0000
committerEzra Peisach <epeisach@mit.edu>2009-01-05 05:01:04 +0000
commitd42ee19e40f66533ed237609d7c9f82818bdf4f9 (patch)
tree8901a2e9be3d7d60376452de915ef520c9e5d31e /src/util
parent36b714414479f02aeb2786ce8524cf5f958a8a95 (diff)
downloadkrb5-d42ee19e40f66533ed237609d7c9f82818bdf4f9.tar.gz
krb5-d42ee19e40f66533ed237609d7c9f82818bdf4f9.tar.xz
krb5-d42ee19e40f66533ed237609d7c9f82818bdf4f9.zip
ifdef out unused functions that are also missing prototypes.
krb5int_utf8_islower and krb5int_utf8_isupper. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21697 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
-rw-r--r--src/util/support/utf8.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/support/utf8.c b/src/util/support/utf8.c
index 8712c6751e..f0d764e4a8 100644
--- a/src/util/support/utf8.c
+++ b/src/util/support/utf8.c
@@ -415,6 +415,7 @@ int krb5int_utf8_isalnum(const char * p)
return KRB5_ALNUM(c);
}
+#if 0
int krb5int_utf8_islower(const char * p)
{
unsigned c = * (const unsigned char *) p;
@@ -435,6 +436,7 @@ int krb5int_utf8_isupper(const char * p)
return KRB5_UPPER(c);
}
#endif
+#endif
/*