svn commit: r227807 - head/lib/libc/string

David Chisnall theraven at FreeBSD.org
Mon Nov 21 23:32:15 UTC 2011


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)
 {


More information about the svn-src-all mailing list