summaryrefslogtreecommitdiff
path: root/lib/libc/ctype/tolower.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/ctype/tolower.c')
-rw-r--r--lib/libc/ctype/tolower.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/ctype/tolower.c b/lib/libc/ctype/tolower.c
index abeab42a..aeb462d8 100644
--- a/lib/libc/ctype/tolower.c
+++ b/lib/libc/ctype/tolower.c
@@ -8,7 +8,7 @@ int tolower(int c)
return c;
}
-weak int tolower_l(int c, locale_t unused locale)
+__weak int tolower_l(int c, locale_t __unused locale)
{
return tolower(c);
}