aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Chisnall <theraven@FreeBSD.org>2011-11-21 23:32:14 +0000
committerDavid Chisnall <theraven@FreeBSD.org>2011-11-21 23:32:14 +0000
commita54626e0cd898be4e2c28851d576cd5639473c19 (patch)
tree8dad101c5f8374c88692a722459aa1ef3b724ff7 /lib
parenta2d8240de5d0a80c68f33462925072ab2cbeb699 (diff)
downloadsrc-a54626e0cd898be4e2c28851d576cd5639473c19.tar.gz
src-a54626e0cd898be4e2c28851d576cd5639473c19.zip
(Hopefully) Fix the build with clang by removing a typedef that's no longer needed.
Approved by: brooks (mentor)
Notes
Notes: svn path=/head/; revision=227807
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/string/strcasecmp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c
index e173f6d04e4e..65e042e42a42 100644
--- a/lib/libc/string/strcasecmp.c
+++ b/lib/libc/string/strcasecmp.c
@@ -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)
{