=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/Attic/aux.c,v retrieving revision 1.22 retrieving revision 1.23 diff -c -r1.22 -r1.23 *** src/usr.bin/mail/Attic/aux.c 2004/09/15 22:21:40 1.22 --- src/usr.bin/mail/Attic/aux.c 2008/07/15 19:23:26 1.23 *************** *** 1,4 **** ! /* $OpenBSD: aux.c,v 1.22 2004/09/15 22:21:40 deraadt Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: aux.c,v 1.23 2008/07/15 19:23:26 martynas Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* *************** *** 34,40 **** #if 0 static const char sccsid[] = "@(#)aux.c 8.1 (Berkeley) 6/6/93"; #else ! static const char rcsid[] = "$OpenBSD: aux.c,v 1.22 2004/09/15 22:21:40 deraadt Exp $"; #endif #endif /* not lint */ --- 34,40 ---- #if 0 static const char sccsid[] = "@(#)aux.c 8.1 (Berkeley) 6/6/93"; #else ! static const char rcsid[] = "$OpenBSD: aux.c,v 1.23 2008/07/15 19:23:26 martynas Exp $"; #endif #endif /* not lint */ *************** *** 597,614 **** if (*cp == c) i++; return(i); - } - - /* - * Convert c to upper case - */ - int - chraise(int c) - { - - if (islower(c)) - return(toupper(c)); - return(c); } /* --- 597,602 ----