svn commit: trunk/uClibc/libc/string

psm at uclibc.org psm at uclibc.org
Tue Jan 3 15:25:39 UTC 2006


Author: psm
Date: 2006-01-03 07:25:34 -0800 (Tue, 03 Jan 2006)
New Revision: 13048

Log:
Revert a change until I find the textrel cause

Modified:
   trunk/uClibc/libc/string/strcasecmp.c
   trunk/uClibc/libc/string/strncasecmp.c


Changeset:
Modified: trunk/uClibc/libc/string/strcasecmp.c
===================================================================
--- trunk/uClibc/libc/string/strcasecmp.c	2006-01-03 14:50:18 UTC (rev 13047)
+++ trunk/uClibc/libc/string/strcasecmp.c	2006-01-03 15:25:34 UTC (rev 13048)
@@ -32,7 +32,7 @@
 # ifdef __UCLIBC_DO_XLOCALE
 #  define TOLOWER(C) __tolower_l((C), locale_arg)
 # else
-#  define TOLOWER(C) __tolower((C))
+#  define TOLOWER(C) tolower((C))
 # endif
 #endif
 

Modified: trunk/uClibc/libc/string/strncasecmp.c
===================================================================
--- trunk/uClibc/libc/string/strncasecmp.c	2006-01-03 14:50:18 UTC (rev 13047)
+++ trunk/uClibc/libc/string/strncasecmp.c	2006-01-03 15:25:34 UTC (rev 13048)
@@ -32,7 +32,7 @@
 # ifdef __UCLIBC_DO_XLOCALE
 #  define TOLOWER(C) __tolower_l((C), locale_arg)
 # else
-#  define TOLOWER(C) __tolower((C))
+#  define TOLOWER(C) tolower((C))
 # endif
 #endif
 




More information about the uClibc-cvs mailing list