summaryrefslogtreecommitdiff
path: root/lib/libc/string/strcoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/strcoll.c')
-rw-r--r--lib/libc/string/strcoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c
index 6b2e532a..6efaa3d3 100644
--- a/lib/libc/string/strcoll.c
+++ b/lib/libc/string/strcoll.c
@@ -7,7 +7,7 @@ int strcoll(const char *s1, const char *s2)
return strcmp(s1, s2);
}
-weak int strcoll_l(const char *s1, const char *s2, locale_t unused locale)
+__weak int strcoll_l(const char *s1, const char *s2, locale_t __unused locale)
{
return strcoll(s1, s2);
}