From: Ezra Peisach Date: Mon, 5 Jan 2009 05:01:04 +0000 (+0000) Subject: ifdef out unused functions that are also missing prototypes. X-Git-Tag: krb5-1.7-alpha1~111 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d42ee19e40f66533ed237609d7c9f82818bdf4f9;p=krb5.git 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 --- diff --git a/src/util/support/utf8.c b/src/util/support/utf8.c index 8712c6751..f0d764e4a 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 /*