diff options
Diffstat (limited to 'lib/libc/ctype/toupper.c')
| -rw-r--r-- | lib/libc/ctype/toupper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/ctype/toupper.c b/lib/libc/ctype/toupper.c index e952acd9..934841fa 100644 --- a/lib/libc/ctype/toupper.c +++ b/lib/libc/ctype/toupper.c @@ -8,7 +8,7 @@ int toupper(int c) return c; } -int toupper_l(int c, locale_t unused locale) +int toupper_l(int c, locale_t __unused locale) { return toupper(c); } |
