A
This commit is contained in:
@ -591,9 +591,9 @@ strcspn(const char *s, const char *c)
|
||||
}
|
||||
|
||||
__attribute__((weak)) int
|
||||
isupper(int c)
|
||||
isupper(int d)
|
||||
{
|
||||
return (unsigned)c - 'A' < 26;
|
||||
return (unsigned)d - 'A' < 26;
|
||||
}
|
||||
|
||||
__attribute__((weak)) int
|
||||
|
||||
Reference in New Issue
Block a user