This is the mail archive of the libc-hacker@cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

CVS source error


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;
 }



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]