summaryrefslogtreecommitdiff
path: root/ctype
diff options
context:
space:
mode:
Diffstat (limited to 'ctype')
-rw-r--r--ctype/ctype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctype/ctype.c b/ctype/ctype.c
index 1c684026fe..ce6d7097f0 100644
--- 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;
}