This commit is contained in:
2026-02-04 22:47:45 +01:00
parent 84377c6b3a
commit 583bc3f417

View File

@ -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