Date: Mon, 21 Nov 2011 23:32:14 +0000 (UTC) From: David Chisnall <theraven@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r227807 - head/lib/libc/string Message-ID: <201111212332.pALNWERk064460@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: theraven Date: Mon Nov 21 23:32:14 2011 New Revision: 227807 URL: http://svn.freebsd.org/changeset/base/227807 Log: (Hopefully) Fix the build with clang by removing a typedef that's no longer needed. Approved by: brooks (mentor) Modified: head/lib/libc/string/strcasecmp.c Modified: head/lib/libc/string/strcasecmp.c ============================================================================== --- head/lib/libc/string/strcasecmp.c Mon Nov 21 22:57:28 2011 (r227806) +++ head/lib/libc/string/strcasecmp.c Mon Nov 21 23:32:14 2011 (r227807) @@ -42,8 +42,6 @@ __FBSDID("$FreeBSD$"); #include <ctype.h> #include "xlocale_private.h" -typedef unsigned char u_char; - int strcasecmp_l(const char *s1, const char *s2, locale_t locale) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111212332.pALNWERk064460>