CVS source error

Wesley Morgan morganw@engr.sc.edu
Thu Apr 1 00:00:00 GMT 1999


Building from the CVS source this morning I picked up on a little typo in
ctype/ctype.c:


--- ctype/ctype.c~	Sun Jan 24 00:31:59 1999
+++ ctype/ctype.c	Sun Jan 24 12:31:50 1999
@@ -37,13 +37,13 @@
 func (isxdigit, _ISxdigit)
 
 int
-tolower (int c)
+tolower (int __c)
 {
   return __c >= -128 && __c < 256 ? __tolower (__c) : __c;
 }
 
 int
-toupper (int c)
+toupper (int __c)
 {
   return __c >= -128 && __c < 256 ? __toupper (__c) : __c;
 }




More information about the Libc-alpha mailing list