diff options
author | Ezra Peisach <epeisach@mit.edu> | 2009-01-05 05:01:04 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 2009-01-05 05:01:04 +0000 |
commit | d42ee19e40f66533ed237609d7c9f82818bdf4f9 (patch) | |
tree | 8901a2e9be3d7d60376452de915ef520c9e5d31e /src/util | |
parent | 36b714414479f02aeb2786ce8524cf5f958a8a95 (diff) | |
download | krb5-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.c | 2 |
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 /* |