projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2843051
)
(toupper): Correct variable names from lat change.
author
drepper
<drepper>
Sun, 24 Jan 1999 10:00:55 +0000
(10:00 +0000)
committer
drepper
<drepper>
Sun, 24 Jan 1999 10:00:55 +0000
(10:00 +0000)
(tolower): Likewise.
ctype/ctype.c
patch
|
blob
|
history
diff --git
a/ctype/ctype.c
b/ctype/ctype.c
index
1c68402
..
ce6d709
100644
(file)
--- a/
ctype/ctype.c
+++ b/
ctype/ctype.c
@@
-39,11
+39,11
@@
func (isxdigit, _ISxdigit)
int
tolower (int c)
{
- return
__c >= -128 && __c < 256 ? __tolower (__c) : __
c;
+ return
c >= -128 && c < 256 ? __tolower (c) :
c;
}
int
toupper (int c)
{
- return
__c >= -128 && __c < 256 ? __toupper (__c) : __
c;
+ return
c >= -128 && c < 256 ? __toupper (c) :
c;
}