summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-15 20:44:37 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-15 20:44:37 +0000
commit2f98cb9b4143ee57f65597616ee6be4f1c07ada4 (patch)
tree37c3398b918991f42ed307b5bc1f96d40a535346 /libc/string
parent3eafa0ace7511974f0658955203f2eb18924c0cc (diff)
strcoll for non-locale
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/ia64/strcmp.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/string/ia64/strcmp.S b/libc/string/ia64/strcmp.S
index fe7e201c1..d3b41e642 100644
--- a/libc/string/ia64/strcmp.S
+++ b/libc/string/ia64/strcmp.S
@@ -52,3 +52,8 @@ ENTRY(strcmp)
br.ret.sptk.many b0
END(strcmp)
libc_hidden_def (strcmp)
+
+#ifndef __UCLIBC_HAS_LOCALE__
+strong_alias(strcmp,strcoll)
+libc_hidden_def(strcoll)
+#endif