diff options
author | theraven <theraven@FreeBSD.org> | 2011-11-21 23:32:14 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2011-11-21 23:32:14 +0000 |
commit | 3be48b6d59eed7d8eadd7974014c5cf08eb38e9a (patch) | |
tree | 8dad101c5f8374c88692a722459aa1ef3b724ff7 /lib/libc/string | |
parent | e8ee756732f827a0fd18ac22999fdc94ba5f4753 (diff) | |
download | FreeBSD-src-3be48b6d59eed7d8eadd7974014c5cf08eb38e9a.zip FreeBSD-src-3be48b6d59eed7d8eadd7974014c5cf08eb38e9a.tar.gz |
(Hopefully) Fix the build with clang by removing a typedef that's no longer needed.
Approved by: brooks (mentor)
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/strcasecmp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c index e173f6d..65e042e 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) { |