summaryrefslogtreecommitdiffstats
path: root/libc/string/arm/strcmp.S
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-10 23:04:41 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-10 23:04:41 +0000
commit9184de4614953897215e989b8720ad7fe6cfde86 (patch)
tree3fbdd8c59ed45fee7162fc51241cb59ee51afcf2 /libc/string/arm/strcmp.S
parentf335b8c0ffb5fd7ae44d154900d78988b6abf769 (diff)
downloaduClibc-alpine-9184de4614953897215e989b8720ad7fe6cfde86.tar.bz2
uClibc-alpine-9184de4614953897215e989b8720ad7fe6cfde86.tar.xz
Finish merge from trunk, again, no really.
Diffstat (limited to 'libc/string/arm/strcmp.S')
-rw-r--r--libc/string/arm/strcmp.S8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/string/arm/strcmp.S b/libc/string/arm/strcmp.S
index 4e2e3f5b5..33acc14cf 100644
--- a/libc/string/arm/strcmp.S
+++ b/libc/string/arm/strcmp.S
@@ -29,7 +29,7 @@
* by Erik Andersen <andersen@codepoet.org>
*/
-#include <locale.h>
+#include <features.h>
.global strcmp
.set strcmp,__strcmp
@@ -50,7 +50,7 @@ __strcmp:
mov pc, lr
.size __strcmp,.-__strcmp
-#ifdef __LOCALE_C_ONLY
-.weak __strcoll ; __strcoll = __strcmp
-.global strcoll ; .set strcoll,__strcoll
+#ifndef __UCLIBC_HAS_LOCALE__
+.global __strcoll ; .hidden __strcoll ; __strcoll = __strcmp
+.global strcoll ; .set strcoll,__strcmp
#endif